Woo commerce add to cart button

/*Remove link from woocoomerce shop page title price image */

add_action( ‘woocommerce_before_shop_loop_item_title’, ‘wcname_close_link’, 9);
function wcname_close_link() {
echo ““;
}

add_action( ‘woocommerce_after_shop_loop_item’, ‘wcname_open_empty_link’, 4);
function wcname_open_empty_link() {
echo ““;
}
/*add add to cart button*/
add_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 20 );

/*change add to cart button text to buy now*/
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 __( ‘Buy Now’, ‘woocommerce’ ); // Replace “By Now” text with your own text
}

0 Comments

No Comment.