Site icon Experience Wordpress Developer Online – Design Develop and Maintenance Support

Back button / Return button link to shop page woocommerce

If you would like to show the Back to Shop button on the single product page, than use this following line of code at the end of your theme’s functions.php file of your active child theme (or theme) and Save the file.

add_action( 'woocommerce_after_add_to_cart_button', 'custom_go_back_shop', 10 );
function custom_go_back_shop() {
  global $product;
  echo '  '; 
}
Exit mobile version