Hi all,

got one issue - I am pretty sure QT were working perfectly yesterday. Unofrtunatelly I am not the only one who is messing arround the installation (although I am the only one who is not messing it up) so I can't say exactly what has happend before the QT stopped working.

Anyway, maybe your advice/support would help. So, the major problem:

Tab links has changed from "#" to sth like "/node?quicktabs_1=0#quicktabs-1".

So my question now is - does anybody has any idea what could have possibly caused this?

Thanks a lot!
Peter

Comments

petiar’s picture

New information - it only does this on the page (node)! On all other pages the QT blocks work perfectly.

pasqualle’s picture

If you inserted the quicktab into page-*.tpl.php then you have this problem: #332895-13: render quicktab programatically

petiar’s picture

No, I did not. :-(

petiar’s picture

Status: Active » Closed (won't fix)

Sorry guys, I still do not know what is the problem but now I know it has nothing to do with QT - it is some general javascript issue on my frontpage.

Thanks anyway.

yadranko’s picture

Version: 6.x-2.0-rc5 » 6.x-3.0-beta1
Status: Closed (won't fix) » Active

I have this same problem. I noticed that with some themes it works fine (Marinelli, Easy Breeze) while in others (such as Aboutpeople - which I'm using) it keeps refreshing the page each time a quicktab is clicked. The kind of link that gets displayed after clicking a quicktab: node?quicktabs_mycategory_feeds=0#quicktabs-mycategory_feeds

I would really like to use this theme, but the reloading/redirecting of the home page on quicktab clicking is annoying. Any thoughts?

yadranko’s picture

OK, I tried placing the quicktab block in different regions of the theme, it seems to work in Content Top region but not in content region. Why would different regions be causing this problem?

katbailey’s picture

There must be a js error on your page. If some other JavaScript code is causing an error, this will interfere with Quicktabs' js and cause the page to reload when you click on a link. Please check in your browser for js errors.

katbailey’s picture

Priority: Critical » Normal
junro’s picture

Same probleme,

I'm using on the same page.tpl (head section)

  <script src="/sites/all/libraries/easytabs/jquery.min.js" type="text/javascript"></script>
<script src="/sites/all/libraries/easytabs/jquery.hashchange.min.js" type="text/javascript"></script>
<script src="/sites/all/libraries/easytabs/jquery.easytabs.js" type="text/javascript"></script>

and using:

function xxx_preprocess_page(&$vars) {
  // As quicktabs require additional js and css files, we must construct the quicktab here.
  $quicktabs = quicktabs_load(4);
  $vars['xxx'] = theme('quicktabs', $quicktabs);

  // Reconstruct CSS and JS variables.
  $vars['css'] = drupal_add_css();
  $vars['styles'] = drupal_get_css();
  $vars['scripts'] = drupal_get_js();
}

in my template.php

junro’s picture

create the quicktabs dynamically does it fix this problem?

netw3rker’s picture

Issue summary: View changes
Status: Active » Closed (works as designed)

closing - OP acknowledges that this is not related to quicktabs.