The previous back link do not work if i use it in Firefox
Works for me in Firefox (if I come to the more info page via the store page).
However, if i access the more informartion page directly without going through the main store page, it will not work as well.
Why would it? The 'Return to Previous Page' link is using the JavaScript history function to go back one page in the browser history. If you access the page directly without coming from some other page, then there is nothing in that history to go back to. Here is what the actual code for the link looks like in the page source:
- Code: Select all
<a href="#" onclick="history.go(-1)">
I note that your templates are customized templates, not ShopSite default templates, so if you want this link to use something other than this JavaScript function (i.e. something like a hard link back to the page the product is assigned to or back to your home page), then you should talk to the designer that made your custom templates to see if that is possible.
-Loren