Uncategorized / WooCommerce / Wordpress

WooCommerce Sepete Ekle İsmi Değiştirme (WordPress Add to Cart)

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' );
}

 

4.4 5 votes
Article Rating
Subscribe
Bildir
guest
0 Yorum
Inline Feedbacks
View all comments