Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
How can I navigate to other tab by some url.
Currently I can navigate only to first page on first click
Hi Azhar,
I suggest you to add this JS snippet to add support for custom URLs in tabsets:
jQuery( 'body' ).on( 'click', '.nav-tabs li a', function( ev ) { var $a = jQuery( this ); if ( $a.attr( 'href' ).match( /^https?/ ) ) { window.location.href = $a.attr( 'href' ); return false; } } );Then you can add custom link for tabs.