montebarlos adlı üyeden alıntı: mesajı görüntüle

3. functions.php Dosyasında Filtre Kullanma


Kod ile değiştirmek için aşağıdaki kodu functions.php dosyanıza ekleyebilirsiniz:


add_filter('woocommerce_return_to_shop_text', 'custom_return_to_shop_text');
function custom_return_to_shop_text() {
    return 'Alışverişe Geri Dön'; // İstediğiniz metni yazabilirsiniz
}

add_filter('woocommerce_order_button_text', 'custom_continue_to_payment_text');
function custom_continue_to_payment_text() {
    return 'Ödemeye Devam Et'; // İstediğiniz metni yazabilirsiniz
}
Hala aynı hocam ekledim