It's a quick ad-hoc solution to allow you to link to your page to a specific tab from elementor tabs widget.
Here's the catch, you need to replace the id of the specific tab you want to use to not contain the title-
part.
Use
https://your-website/#elementor-tab-1515
instead of:
https://your-website/#elementor-tab-title-1515
Make sure you add the JavaScript code in the footer, so it loads after the elementor tabs widget, otherwise the elementor tabs widget code will override what we're trying to acheive.
@samsamvt nothing to apologize for! No JavaScript experience is needed, I might not have made it clear.
What I meant is that you use the inspect element in your browser to find the tab title, you'll find that it has an
id
that's similar toelementor-tab-title-1515
. You'll need to copy the id then append it to the website URL.so it will be like:
https://your-website.com/#elementor-tab-title-1515
(notice that you need to add
#
between your website URL and the id you copied earlier)Then you need to remove the
title-
part so it will become:https://your-website.com/#elementor-tab-1515
I hope it helps.