Home › Forums › WoodMart support forum › Add back to previous page › Reply To: Add back to previous page
April 28, 2024 at 4:17 pm
#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> ';
}