- πΊπΈ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
If you set the view to display the header even if the view is empty, and the view is empty, QT will not output anything because line 518 of quicktabs.module should have an extra clause in it to account for the header_empty option.
if (!empty($view->result) || $view->display_handler->get_option('empty') || !empty($view->style_plugin->definition['even empty'])) {
should be
if (!empty($view->result) || $view->display_handler->get_option('empty') || !empty($view->style_plugin->definition['even empty']) || $view->display_handler->get_option('header_empty')) {
I'm not sure if this affects the 3.0 branch.
Closed: outdated
3.4
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