• Resolved Filipe Salazar

    (@filipe-salazar)


    Hello
    Is it possible to create a link for each tab created?
    E.G. in the main page have 2 links, each link goes to a page and open automatically the respective tab (1 or 2)

    thanksss

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    Kindly edit js/wp-tab-widget.js and replace

    
    $this.find('.wpt-tabs a').first().click();
    

    with

    
    var $tab = jQuery(window.location.hash, ".wpt-tabs"); 
    if ( $tab.length) { 
        $tab.click() 
    } else { 
        jQuery(".wpt-tabs a").first().click() 
    }
    

    You can then append #popular-tab/#recent-tab/#comments-tab/#tags-tab to the URL to automatically open that tab.

    Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    Since we have not heard back from you on this thread, we are assuming the issue is resolved.

    If however the issue is still not resolved, please feel free to reply to this thread or open a new.

    Or let us know if you need any other assistance. We are here to help.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘tab with targets’ is closed to new replies.