Woocommerce
-
Hi, I would like to add a buy now button instead of add to cart in my shop page.. I have used
add_filter( ‘add_to_cart_text’, ‘woo_custom_cart_button_text’ );
function woo_custom_cart_button_text() {
return __( ‘Buy Now’, ‘woocommerce’ );
}
but it can only able to change the text.. So how can I add the button
- The topic ‘Woocommerce’ is closed to new replies.