Home Forums WoodMart support forum Add back to previous page Reply To: Add back to previous page

#561447

nax1to
Participant

It works like a charm by adding the following code in the functions.php file of the child theme:


add_action( 'woocommerce_before_single_product', 'back_button', 5 );
function back_button() {
global $product;
echo ' <a href="history.go(-1)"> Go Back</a> '; 
}
  • This reply was modified 7 months, 2 weeks ago by nax1to.
  • This reply was modified 7 months, 2 weeks ago by nax1to.
  • This reply was modified 7 months, 2 weeks ago by nax1to.