Hi @amaroak
Please follow the below instruction:
1. Install Insert Script In Headers And Footers Plugin.
2. Then you can find it in settings>Insert Script In Headers And Footers and paste the following script in the “Scripts in Footer” textarea.
<script type=”text/javascript”>
jQuery(function () {
jQuery(‘.tabcall’).on(‘click’, function(event) {
event.preventDefault();
var tabid = jQuery(this).attr(‘tab-id’);
jQuery(‘[data-toggle=”tab”][href=”#’ +tabid + ‘”]’).trigger(‘click’);
})
});
</script>
3. now copy and paste the following code in the tab description
<a tab-id="tabs_desc_44_2" class="tabcall" data-toggle="tab">link</a>
you have to just change the tabs_desc_44_2 last digit of id according to your tabs sequence eg. tabs_desc_44_3 and run it.
Thank you