Hi
Sorry I've missed that in Your mail.
There were 2 problems.
1. The RSS was not providing category of an article and module could not proceed without it. I've edited modules/mod_news_pro_gk5/data_sources/rss/model.php on line 38 and replaced code:
- Code: Select all
$art['catname'] = $item->get_category()->get_term();
with
- Code: Select all
$art['catname'] = '';//$item->get_category()->get_term();
so category is not neccessary anymore.
2. There were a conflict between module and template since this module was developed after this template and some options are only accessible if a default module style is used, but I'v added a small fix to override.css file (had to enable override in template settings in order to use this file)
- Code: Select all
.nspList, .nspArtPage {
opacity: 1 !important;
}