設定路徑:版面>設定JS全館程式碼,加入以下程式碼:

if($(".label-important,.stock-status-label").length){
    $(".label-important,.stock-status-label").each(function(){
        if($(this).text().trim()=='已完售'){
            $(this).text("補貨中");
        }
    });
}


將程式碼裡的「文字部分內容」,改為您要顯示的文字即可。



-------



【延伸】 修改「已完售標籤」的顏色


將以下語法,貼在版面>自訂CSS商店樣式

.label-important, .badge-important {
    background-color: #6a4a49;
}


若要修改顏色,請修改語法中的「#6a4a49」