Change Woocommerce default store link?

Hey guys,

Hopefully this is a simple one; I have a custom store page made with essential grid which is the online store page.
When we are viewing a product, and click the “back” button circled in the screenshot, we are redirected to the woocommerce shop page, and we don’t want this.

Is there an easy step we’re missing to redirect it to our essential grid?
We have tried having our custom page as the woocommerce shop page, but it just displayed the woocommerce content underneath our essential grid.

Hi @discomatt,

Thank you for writing in, please add this to Theme Options > JS

jQuery( document ).ready(function($) {
  $(".single-product a.entry-parent").attr("href","https://www.google.com/")
});

Replace the https://www.google.com/ with the URL of your shop page.

Please be reminded that this is a customization and that would ultimately be your responsibility to take it from here.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.