Görünüm Tema Düzenleyici kısmına gelip functions.php doyası üzerinde bunu değiştirebilirsiniz. Eğer child temanız varsa bu tema üzerinde gerçekleştirin.
Tekli Ürün Sayfası İçin
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' );
function woocommerce_custom_single_add_to_cart_text() {
return __( 'Hemen Sepete Ekle', 'woocommerce' );
}
Ürün Arşiv Sayfası İçin
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );
function woocommerce_custom_product_add_to_cart_text() {
return __( 'Hemen Sepete Ekle', 'woocommerce' );
}
Her İkisi için
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' );
function woocommerce_custom_single_add_to_cart_text() {
return __( 'Hızlı Al', 'woocommerce' );
}
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );
function woocommerce_custom_product_add_to_cart_text() {
return __( 'Hızlı Al', 'woocommerce' );
}