That's right, advanced_forum_new_topics seems to be the only view that does not get the skin css applied.

Comments

nicholas.alipaz’s picture

To band-aid the issue on my site, I have done the following in another custom module (this requires installing views_preprocessors module in order to work):

function MYMODULE_preprocess_views_view__advanced_forum_new_topics(&$vars) {
  if (!function_exists('_advanced_forum_add_files')) {
    module_load_include('inc', 'advanced_forum', 'includes/style');
  }
  _advanced_forum_add_files();
}
troky’s picture

Category: bug » support
Status: Active » Postponed (maintainer needs more info)

I can't reproduce this issue. All views are properly styled and all css is loaded (5 css files for Silver bells stacked style).

Can you try to reproduce this on clean install?

nicholas.alipaz’s picture

Status: Postponed (maintainer needs more info) » Active

I am using a custom skin based on naked, perhaps that is the reason my css is not being picked up. By adding the code above, it is fixed.