- πΊπΈUnited States smustgrave
With D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue.
If still an issue or needed for 4.0.x (latest branch) feel free to reopen
when including a set of tabs in another set of tabs via the "QTabs" type, the render method of QuickQtabsContent does not call drupal_alter like the regular tab build sequence does.
This means that any customizations done through hook_quicktabs_alter do not work as expected.
A simple fix could be merely calling the alter on line 49 of plugins/QuickQtabsContent.inc:
drupal_alter('quicktabs', $quicktabs);
in context:
$output = array();
if (isset($item['machine_name'])) {
if ($quicktabs = quicktabs_load($item['machine_name'])) {
drupal_alter('quicktabs', $quicktabs);
$contents = $quicktabs->tabs;
$name = $quicktabs->machine_name;
unset($quicktabs->tabs, $quicktabs->machine_name);
$options = (array) $quicktabs;
if ($qt = QuickSet::QuickSetRendererFactory($name, $contents, $quicktabs->renderer, $options)) {
$output = $qt->render();
}
}
}
Closed: outdated
3.6
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
With D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue.
If still an issue or needed for 4.0.x (latest branch) feel free to reopen