Hi, thanks for the theme, it’s great. We’ve just implemented the mobile theme and love the options, especially re: advertising.
One small question: On our home page the latest articles are displayed under the header text ‘Latest Articles’. How can we remove that text?
Thanks đ
Hi,
The Latest articles section will be displayed on the bottom of the page, when the required page template is selected
– https://www.screencast.com/t/bK8CCpSLBNDg
You can set a custom title to it, or hide the title if you wish.
Thanks
Hi,
Then the settings will be in the backend of the page
– https://www.screencast.com/t/VlflrNdem
Thanks
That’s not there either. This is what it looks like:
Hi,
The page in the screenshot does not have the latest articles page template selected
– https://www.screencast.com/t/U1eseoAKnT
If that page template is not selected, the latest articles section will not be displayed at all. Edit the page where the template is used, the options will be visible. If they are still not present, check the screen options
– https://www.screencast.com/t/vgPzKdFezsW
Thanks
Ok, I found that and have selected ‘hide title’
https://i.imgur.com/NpGmnED.png
Yet as you can see, on our mobile home page the text ‘Latest Articles’ still appears
Hi,
When using the mobile theme plugin, this will always display on the front page a Top grid (which displays posts from the Featured category) and a Latest articles section. The mobile theme does not have options to remove any of these elements. The latest articles title could be removed with some CSS if you don’t want it displayed.
Enter this code in Theme panel->Mobile theme->Custom CSS section and it should remove the text “Latest articles”
.td-pb-article-list .block-title span{
display: none;
}
Thanks