e107 Styles

Fórumok

premium themes

6 years ago
I can't find any information about your premium themes. I'm very fond of one of your themes, but I need some modifications and was wondering what it would cost to get the job done. I'm investigating magazine_02. The changes I need is that in the top site I need to be able to show only the news items to a certain category or- sticky news items. The rest of the page need to keep its dynamics.
6 years ago
2017. May 05. Fri, 23:31fizi
No problem, this is easy. The theme_shortcodes.php file has it.
function sc_bootstrap_grid_news_features_top(){
  
    $template = "
        <!-- News Grid Menu for PageTop Latest 5 News -->
        {MENU: path=news/news_grid&limit=5&category=0&source=latest&featured=1&layout=featured-news}

    ";

    $text = e107::getParser()->parseTemplate($template,true);

    echo $text;
  
  }

Where is the category=0 (all news) write 1,2,3... (categories news)
In this way appears only selected categories news.
If you want sticky news - where the source=latest write sticky.
I hope I helped.
6 years ago
So Easy! Thanks for your reply.
Moderator(s): fizi