- 🇷🇴Romania claudiu.cristea Arad 🇷🇴
This version of Drupal is not supported anymore. If this is still an issue in the
8.x-1.x
branch, please open a new up-to-date ticket. Closing.
Attachment view is not shown when a group does not have any posts. The fix is that the attachments are not checked in the line 221 of og_views.module:
if (!empty($view->total_rows) || !empty($view->num_rows) || !empty($view->page_empty) || $view->display_handler->get_option('empty')) {
should be:
if (!empty($view->total_rows) || !empty($view->num_rows) || !empty($view->page_empty) || !empty($view->attachment_before) || !empty($view->attachment_after) || $view->display_handler->get_option('empty')) {
Closed: outdated
2.0
Og Views
This version of Drupal is not supported anymore. If this is still an issue in the 8.x-1.x
branch, please open a new up-to-date ticket. Closing.