Change YITH add to cart button text on wishlist page
-
Hi, So far I changed the add to cart button text if a product is tagged with ‘preorder’ which is working fine by adding following code to my child theme’s functions.php
I want to do the same thing with the add to cart button on the yith wishlist page, any suggestions?
//For single product page
add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_cart_button_text’ ); // 2.1 +
function woo_custom_cart_button_text() {
global $product;
if ( has_term( ‘Preorder’, ‘product_tag’, $product->ID ) ) :
return __( ‘Pre order Now !’, ‘woocommerce’ );
else:
return __( ‘In Winkelmand’, ‘woocommerce’ );
endif;
}
- The topic ‘Change YITH add to cart button text on wishlist page’ is closed to new replies.