Open a specific tab from the menu option

Good Morning,

I would like to know if from a custom link in the menu that redirects to another page where there is a tab element, it can be indicated in the url to open a specific tab automatically.

thanks

Hi @gbg4,

Thanks for reaching out.
Regretfully, there is no such option to do that, what you are expecting is required customization and beyond the scope of theme support. I would suggest you hire a developer who can assist you to do the customization or you can avail of our newly launched service called One, where the customization questions are answered.

Thanks

good morning, thanks for the reply. Could you tell me the jquery call that does the click event of the tabs?

thanks

Hi @gbg4,

You need to use the jQuery trigger method to click the tab externally. Code would be something similar to the following.

$('#tab-2578-5').trigger('click');

In the above code the selector is the tab id, where the click event will be triggered. To know more on trigger handler, please go through this article: https://api.jquery.com/triggerHandler/
Please remember that the above code is an example code, and may not work on your case.

Thanks

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