OL bug in Tabs Content

Tabs module is the easiest and convenient way to create tabs in Joomla website with powerful features like JSON or XML support.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Tue Jul 31, 2012 10:40 am
Hello!

I want to display an <ol> or <ul> in my tabs content but it's impossible.

First, the CSS style is inherited from the tabs interface.
Then, when I click on the <li> inside my tab content, it behaves as a tab link.

How can I fix this problem?

Regards.
User avatar
Fresh Boarder

Konrad M
Tue Jul 31, 2012 10:49 am
Hi,
please give us url to the page with this issue.
User avatar

GK User
Tue Jul 31, 2012 2:47 pm
As it is currently offline, can I send you anything else helping you to analyze the problem?
User avatar
Fresh Boarder

GK User
Wed Aug 01, 2012 8:25 am
Please, help me!

Try to do the following on an AppsProTech template, insert an <ol> or <ul> inside the content tab, and see what happens…

Cheers!
User avatar
Fresh Boarder

Konrad M
Wed Aug 01, 2012 8:57 am
Please publish your site online somewhere and give me link.
User avatar

GK User
Thu Aug 02, 2012 1:51 pm
Hello,

The website is freshly published and you can browse the problem on the last tab (Cas Client) of the following page: just click on the list with checkmarks and see how the tab content disappears…

http://www.link4lead.com/index.php?opti ... Itemid=202

Thanks for answering,
Regards
User avatar
Fresh Boarder

Konrad M
Thu Aug 02, 2012 2:37 pm
Please go to modules/mod_tabs_gk5/tmpl/default.php and find (line 21):
Code: Select all
<?php if($this->config['tabs_position'] == 'top' || $this->config['tabs_position'] == 'left') : ?>
       <ol>

change to:
Code: Select all
<?php if($this->config['tabs_position'] == 'top' || $this->config['tabs_position'] == 'left') : ?>
       <ol class="gkTabsNav">

and find (line 38):
Code: Select all
<?php if($this->config['tabs_position'] == 'bottom' || $this->config['tabs_position'] == 'right') : ?>
      <ol>

change to:
Code: Select all
<?php if($this->config['tabs_position'] == 'bottom' || $this->config['tabs_position'] == 'right') : ?>
      <ol class="gkTabsNav">

then go to modules/mod_tabs_gk5/scripts/enigine.mootools.js find (line 6) :
Code: Select all
var items = el.getElements('.gkTabsWrap li');

change to:
Code: Select all
var items = el.getElements('.gkTabsWrap .gkTabsNav li');

and go to modules/mod_tabs_gk5/scripts/enigine.jquery.js find (line 9) :
Code: Select all
var items = el.find('.gkTabsWrap li');

and change to:
Code: Select all
var items = el.find('.gkTabsWrap .gkTabsNav li');
User avatar

GK User
Thu Aug 02, 2012 3:06 pm
Thanks for the quick fix! it works!
User avatar
Fresh Boarder

GK User
Tue Aug 14, 2012 9:51 pm
Konrad,
thanks for your help - fix is working.
Will you include that to a extension update?
User avatar
Fresh Boarder

Konrad M
Wed Aug 15, 2012 10:02 am
Yes we will inlcude this fix in next update.
User avatar

GK User
Wed Nov 07, 2012 4:37 am
Hi, has this been included in the latest update? Have downloaded it today and still have the issue that for example the gk_news module isnt showing when the site is loading, only when you click on a different tab and back to it, then its showing.

Have double checked all files and they are showing all changes you have done here...but...no luck
User avatar
Senior Boarder

GK User
Wed Nov 07, 2012 5:27 am
check out here:
http://bluefithosting.com.au/lanecove2012-2/

when the page is loaded, the tab is loading for 1 sec, the disappears, only when you click on another tab and then back to it it stays...

Appreciate your help
User avatar
Senior Boarder


cron