Hi, Is there a way to show Article updated Date and Time in the Mobile theme, the same way as it can be shown in desktop theme?
As this is a problem, when you update an article the last updated date is shown on desktop and on mobile it still shows the first published date.
This will confuse the SEO crawler.
Hi,
Do you only use mobile themes without AMP? if yes, then you can enable the modified date from here -> https://i.imgur.com/UyAN28L.png
Thank you!
Hi,
Do you only use mobile themes without AMP? if yes, then you can enable the modified date from here -> https://i.imgur.com/UyAN28L.png
Thank you!
We use Mobile theme for Mobile + AMP. However when putting it to just Mobile. It is not showing Post settings – Under Mobile themes tab.
Do I have to deactivate the AMP plugin as well?
Thanks, we disabled the Standard pack and were able to see the mobile post settings. As we are very old-time users of Newspaper theme on multiple websites of ours, we built this website with the standard pack. However, realised only 1-2 elements/blocks are on standard pack rest we have already updated to the new one.
Disabling the standard pack will improve website performance is what I read in one of your blog posts?
Few questions as we are trying to make the mobile theme better.
1) How can we change the font size and colour of the breadcrumbs on top of the article page?
2) How can we change the font size and colour of the subtitle under the headline/article title on the article page?
3) How Can we rename the “modified date” to “Last Updated”? And also how can we change its and “By Author” colours?
Thanks for your kind help.
Hi,
Yes, if you no longer use the tagdiv Standard Pack, it can bring you improvements.
1 & 2 You need to use a custom code CSS
.entry-crumbs a, .entry-crumbs
{
color: #536aed;
font-size: 18px;
}
.td-post-sub-title
{
color: #536aed;
font-size: 18px;
}
3. You can change from theme panel -> translations -> translations
color with custom code .td-author-by {
color: #536aed;
font-size: 18px;
}
The code needs to be set in Theme Panel> Mobile Theme > Custom code> CSS.
Thank you!