is it possible to Link direct to product tabs?
like
mysite.com/ onclick=go to tab3
etc
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unfortunately not without some coding. The tabs are li-elements in a ul-list. What you could do is a javascript snippet that checks for a given request parameter and trigger a click event on the particular tab link.
This is a part of the modern theme demo store:
…and the Chrome inspection tool will show the first tab header with:
…that will run this code:
},
So, I would solve it by looking for the request parameter in a Javascript and the trigger a click event for that li-element link.