Hi,
I have couple of questions about the new mobile theme.
1. How can I manage the home page and decide what to show? For now there are top featured articles and the latest articles. I want to put there blocks with different sorting options and categories or change them on the existing. In the top grid for example to show not only featured but what I specify.
2. Where I can put the code for Page-level ads?
3. Can I use widgets on mobile theme?
4. How to hide go to top button?
5. How can I show the footer menu?
6. Is it possible to hide the footer and leave only the footer menu?
7. Can I manage the font on mobile menu.
8. How can I hide the page views? Is the custom code different?
9. May I display and blocks from sidebar on article page?
10. Is the modal image removed by choice or for speed optimization? If it’s removed by choice can I turn it on?
Hello Marto,
1) Please notice that our new mobile theme do not support the Visual Composer and it only displays the Big Grid -> your desired text -> and the latest articles features. For more information about mobile theme, please check our documentation here -> https://forum.tagdiv.com/the-mobile-theme/
2) For more information about page level ads implementation, please check this topic here -> https://forum.tagdiv.com/topic/page-level-ads-problems/
3) Please notice that the mobile theme does not support adding the widgets. This was made to be very fast and clean. All information about this feature you will find in the above documentation. If you want to have widgets, you will have to use the normal mobile theme (responsive mode).
4) If you want to hide the back to the top button, you have to use a bit of CSS code to do it. Please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
@media (max-width:767px){
.td-scroll-up-visible {
display:none;
}
}
5)If you want to show the footer menu, you have to change them from Theme panel, like this -> http://screencast.com/t/3QDthMdzkA
6)Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-mobile-footer-wrap {
display:none;
}
7)Unfortunately, our theme does not have such an option for mobile font menu. If you want to change the font from the mobile menu, you can only do using a bit of CSS. For example, you can use the following code ->
.td-mobile-content{
font-family:arial;
}
Please notice that the font will have to be loaded from the Theme panel->Theme fonts, otherwise, the font will not be loaded. If your custom font is not loaded in our theme, you have to load them using ‘@font-face’ For more references in this regard, please consult here ->>
https://forum.tagdiv.com/font-customization/ – https://forum.tagdiv.com/topic/custom-font-issue/
8)I suppose that you are referring to the post view count for each post page. If you want to hide/remove it, please notice that you can do that from Theme panel->Post Settings, like this -> http://screencast.com/t/gBgk740e If is not what you mean, please provide more details.
9)As you can see, for the mobile theme, you cannot display the blocks for your sidebar. For more information about sidebar, please check our documentation here -> https://forum.tagdiv.com/sidebars-tutorial/
10)Please notice that the mobile theme has been designed to be very basic/simple and clear just to be very fast. Yes, the modal image was removed because influence the speed optimization and that was the decision of our developers. Also, you cannot turn it on because you do not have any option to enable it.
So, if you are unhappy with the new mobile theme behaviour, you simply disable the Mobile theme plugin and the theme will be switched to the normal mobile responsive.
Thank you for your understanding!
Hi,
Thank you for your answer!
I want to disable only views on articles but not to completely stop counting from panel. I have hidden it in responsive design by a css code but its shown on mobile, so i suppose I needanother css css code to add in Mobile theme->Custom css.
Also I have added the Page-level ads code and it’s properly shown in the responsive design, but it nos showing in the mobile theme.
Hello Marto,
Please notice that the Page level ads implementation is not tested for the mobile theme and we cannot say for sure if it works as properly, sorry!
Also, if you want to hide the post view count, you have to use the code below and place it in Theme panel->Custom CSS Area.
The code is ->
.td-post-views {
display:none;
}
Thanks.
Hi,
I think I need to add the code for Page-level ads in the head section for mobile theme and test it. Correct me if I am wrong. If not, please lead me to this file.
And the other thing is that I have already added this code in the place you told me, but the counter appears on mobile theme.
Thanks!
Hello Marto,
The implementation is correct, but please notice that the mobile theme is not displaying the google page level ads, sorry!
The code that I provided you above should apply and for mobile mode. Please provide your website URL so I can inspect it closer.
Thanks.