January 9, 2022 at 1:44 am
#96025
Theme Horse Support Team
Keymaster
Hi Raffet Ali,
The Theme code need to customized to show ‘Top Stories’ Section on all the pages. For that Please go to ‘Theme directory > header.php’ file and on line no: 180, you will find below line of code:
<?php if ( ( is_front_page() || is_home() ) && $meta_news_settings['meta_news_top_stories_hide'] === 0 ) {
Now replace the above code with the code provided below:
<?php if ( $meta_news_settings['meta_news_top_stories_hide'] === 0 ) {
NOTE: Please make sure you create the Child Theme first before customizing the Theme code so that you won’t lose the customized code when updating the Theme to a Newer Version in future.
Thanks