- ApiUsing the Theme API in plugins
- ApiPractical example – How to add a new Block and Module
- ApiAPI – Smart Lists – Introduction
- ApiAPI – Category top section style – Introduction
- ApiAPI – Category top section template – Introduction
- Apitd_api_module::update
- Apitd_api_module::add
- ApiAPI – Modules – Introduction
Hi,
If you want to remove the ads on mobile, you can do it 2 ways. You can either use the mobile theme and not set any ads for it (only available in nespaper7): https://forum.tagdiv.com/the-mobile-theme/
Or you can use css to hide them (adsense will still detect hidden ads, but the viewer will not be able to see it)
You can use this code:
@media(max-width:767px){
.page .td-g-rec{
display:none!important
}}
This will remove all ads on pages on mobile
Thanks.
Hi,
I am using the mobile theme and the site is faster.
However, the ads on top of the home are not showing.
Can you help me?
thanks
Love this theme! As a thank you, here’s some custom code. Sure there are better ways, but I don’t know them. 🙂 I spent last night coding this out, and I figure some others might have the same request. I’m running WordPress MU and wanted to share a menu with all the sites, but I didn’t want to manually enter each in. The code will pull the contents from the top menu into the mobile menu.
//// TO MAKE MENU APPEND TO MOBILE RESPONSIVE MENU. ONLY TOP LEVEL LINKS /////
Custom CSS – Enter into Theme Options -> Custom Code -> Custom CSS
@media (max-width: 767px)
{
/* Hide Dropdowns */
#menu-top-bar li ul {
display: none !important;
visibility: none;
}
/* Hide Down Icon */
#menu-top-bar .td-icon-menu-down {
display: none;
}
.top-header-menu li {
display: list-item;
}
}
CUSTOM JAVACSRIPT – Enter into Theme Options -> Custom Code -> Custom Javascript
jQuery(function() {
var content = jQuery(".menu-top-container").contents(); //GET TOP MENU CONTENT
jQuery(".td-mobile-content").append("<hr />"); // THIS JUST ADDS A DEVIDER
jQuery(".td-mobile-content").append(content.clone()); //clone to contents (so it won't be reomoved from original element) and move element into menu
});
That’s it. 🙂 Below are a few more options.
/// THESE ARE OPTIONS THAT DON’T PULL THE CODE INTO THE MOBILE MENU, BUT DISPLAY IT AT THE TOP.
CSS TO MAKE TOP MENU (ONLY) SHOW UP ABOVE THE CONTENT IN MOBILE MODE (newspaper 7). This one has the links side by side with drop downs..
@media (max-width: 767px)
{
.td-header-sp-top-menu {
display: block !important;
}
.td-header-top-menu-full {
display: block;
}
#menu-top-bar {
padding: 0 0 0 40px !important;
}
}
CSS TO MAKE TOP MENU (ONLY) SHOW UP ABOVE THE CONTENT IN MOBILE MODE (newspaper 7). This one removes dropdowns and stacks the links.
@media (max-width: 767px)
{
.td-header-sp-top-menu {
display: block !important;
}
.td-header-top-menu-full {
display: block;
}
#menu-top-bar {
padding: 0 0 0 40px !important;
}
#menu-top-bar li ul {
display: none !important;
visibility: none;
}
#menu-top-bar .td-icon-menu-down {
display: none;
}
.menu-top-container {
margin-right: 0px;
}
.top-header-menu li {
display: list-item;
position: relative;
margin-left: 0;
/* background-color: #dcdcdc; */
border-bottom: .5px solid;
padding-left: 10px;
}
#menu-top-bar {
padding: 0 0 0 0px !important;
min-width: 400px;
}
.td-header-top-menu {
padding: 0px;
}
}
Hi Bogdan
probably is a wordpress problem, but with the new mobile theme version pagination is also in home and google notices.
to avoid duplication i think must add %%pagenumber%%% in yoast home title and description,
if you doesn’t have a better solution …
thanks
-
This reply was modified 10 years by
Bintmusic.
Hi,
Unfortunately you will not have access to the mobile theme settings without activating the plugin itself. The mobile theme has a few compatibility issues with different plugins when it;s activated. in order to bypass this compatibility issue, you can deactivate other plugins and install the mobile theme without other plugins and then reactivate them after you activated the mobile theme. The compatibility only affects the activation of the plugin in most cases.
If you do not want to use the mobile theme, you can use the responsive layout for mobile.
you can read more about the mobile theme here: https://forum.tagdiv.com/the-mobile-theme/
Thank you!
is it possible to change the color in the mobile theme without activating tagDiv Mobile Theme in theme panel (because there are some plugins that conflict with tagDiv Mobile Theme) ??
because without activating tagDiv Mobile Theme A mobile display its default theme has been changed as mengaktif tagDiv Mobile Theme …
Hi,
Thank you for your suggestion. The mobile theme siply shows the realted category tags as the desktop version will also display if you chose a category template that has this option;. If you want to hide all category tags, you can use this single css code:
.td-category-siblings{
display: none!important;
}
Thank you!
Hello,
This happens because you use the mobile theme and you did not create a mobile version of your page. if you use the mobile theme, the desktop version of your pages will be ignored and you have to create mobile versions for them inside the second editor you can see on pages in the back-end (the mobile editor)
If you do not want to use the mobile theme, you can simply deactivate the plugin. please read this guide to learn more about the mobile theme: https://forum.tagdiv.com/the-mobile-theme/
Thank you!
There are tons of categories on my website. Now, in new mobile theme Sub-Categories or other categories are displayed under Main Category title. Most of the time, that category don’t have sub-category. In that case, theme shows random categories from WordPress which aren’t even active on Theme Menus. Can you please remove those extra categories from under Category title from category page on mobile site? Or at least make it optional. This is just a suggestion.
Currently we have to hide each category one by one from category section, which is very hectic.
Content of Pages of my website is not showing on mobile version of the site. Please test this URL on mobile (www.buddybits.com/submit, http://www.buddybits.com/contact).
Kindly help me how to resolve it.
(Update: My website has your latest version of theme installed.)
Hello cooolvita,
If you want to get rid of that white space, you will have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-crumb-container{
display:none!important;
}
.td-post-title {
display:none;
}
.td-module-meta-info {
display:none!important;
}
.td-post-content .wpb_text_column{
display:none;
}
The results you should see here -> http://screencast.com/t/vlpPbbXS7S3A
Also, if you want that the code below to be applied only for your mobile devices, you will have to use the following code with @media attribute –>>
@media (max-width:767px){
.td-crumb-container{
display:none!important;
}
.td-post-title {
display:none;
}
.td-module-meta-info {
display:none!important;
}
.td-post-content .wpb_text_column{
display:none;
}
}
So, please notice that your second request regarding no reducing the height for the Block 14 thumbs size involves custom work and this type of service is not covered by our support. Please notice that you can control the posts which will be displayed for your Block 14 from the Block Settings panel, like this -> http://screencast.com/t/2l4lU8fi91 and the results you should see here -> http://screencast.com/t/yTw1CkBwFw7x
For more information about our Blocks, please check our documentation here -> https://forum.tagdiv.com/block-settings-tutorial/
Hope this helps!
Thanks for your understanding!
Hi,
That is because our demo does not have the mobile theme activated. if you want to use the responsive version for mobile devices and have visual composer and all of your styling on mobile, then please deactivate the mobile theme from the plugins section. Please read the docs on the mobile theme: https://forum.tagdiv.com/the-mobile-theme/
Thank you!
Hi,
I installed newspaper again on my site with only tagdiv’s plugins.
The problem is; when i activated tagdiv’s mobile theme its not working. I can see site logo, 3 stripes and search button but i cant click on mobile device.
But when plugin deactivated, mobile menu, 3 stripes and search working well on mobile, but i cant see mobile version of slider on my mobile phone. (and i see background pictures on mobile menu, but i didnt choose)
I tested another devices, results are same.
How can i fix it?
Thanks.
Atakan
Hello johnsout,
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!
In a future update, it is possible but we cannot say for sure if it will get done in the next update because we have a big list of fixes, improvements, and suggestions to implement. It’s hard to filter them and select which one gets implemented now and which one gets postponed. The developers decide if it gets done or not, though.
Thanks for your understanding!
Hello Balleto,
Also, please ensure that this type of issue does not come from your untested plugins. Please try to disable all the active plugins, leave just Visual Composer to active, clear all your cache, purge CDN files if you are using the CDN system and install only the plugins that come bundled with our theme and rule out the conflicting plugins. Please notice that I have tested the mobile theme in this case for my side and it works perfectly. Please try again after you have followed this advice and check the results and let us know how it goes.
Thanks for your understanding!
Hello Experts,
Are you planning to implement Page level adsense for the mobile theme?
I ‘ve added custom code in the ads module but it didn’t take effect.
https://support.google.com/adxseller/answer/6068103?hl=en
Many thanks,
Hello!
Social Counter 4.1 does not show up in Safari on OS X. I just updated to the latest (25 May 2016) Newspaper theme and associated plugins.
I have uninstalled and reinstalled Social Counter using the WordPress Plugins deactivate/delete/install function. I also removed/reinstalled the plugin via FTP. I do not use any caching plugins.
Anyone else having similar experience? Any suggestions or insight?
Thanks very much!
Peter
Social Counter 4.1 works fine on:
– Microsoft Edge 25.10586.0.0 on Windows 10 Pro 1511 (10586.318)
– Google Chrome 51.0.2704.63 m on Windows 10 Pro 1511 (10586.318)
– Mozilla Firefox 46.0.1 on Windows 10 Pro 1511 (10586.318)
– Mozilla Firefox 46.0.1 on OS X 10.11.5
– Google Chrome 51.0.2704.63 (64-bit) for OS X 51.0.2704.63 (64-bit) on OS X 10.11.5
– Mobile Safari on iOS 9.3.2 (13F69)
– Google Chrome on ChromeOS 50.0.2661.104
– Google Chrome 50.0.2661.89 on Android 6.01
OS X Details:
– OS X 10.11.5
– Safari 9.1.1 (11601.6.17)
WordPress Details:
– WordPress 4.5.2
– Newspaper 7.1.1
– tagDiv Social Counter 4.1
– WPBakery Visual Composer 4.11.2
– Not running any caching plugins
Hello Chris,
I tried about two times on the AMP plugin, but on Search Console I got a lot of errors. 😀 So I removed it, I think after the update of Newspaper mobile theme their needs some more coding to fetch AMP pages by error free fetching.
As Google announce the next future of website as AMP, a lot of persons (including me) are looking for themes that supports AMP plugin without any error. If Newspaper provides it then Tagdiv team will hit another milestone as on Theme forest.
Hello bahcelievlerilcesi,
Please notice that our News Magazine demo does not have the mobile theme installed and this demo uses the responsive mobile and not the mobile theme. So, I have checked your website and I saw that you’re using the mobile theme. Please keep in mind that the mobile theme displays you only this type of Grid for your top of the home page…so, if you want to achieve the same layout for your mobile mode as the demo you will have to disable the mobile theme and then the theme will be switched to the normal responsive mobile version. For more information about mobile theme, please check our documentation here -> https://forum.tagdiv.com/the-mobile-theme/
Thanks for your understanding!
Hello, i just bought this theme but has some kind of conflict with “theia post slider”
on mobile it works fine, but on computer it shows only the first picture, on the next slides it shows nothing
I really need this slider or another that works on page break and has the same transition effect , but i found none to be as close as good as this
Hi,
How can i able to rename the “Latest Articles” tag on the top in mobile theme
I try change in theme panel but not change…
After update v 7 theme panel does not work.all changes that have been saved in theme panel has not changed at all . costume css code after the save setting no effect change at all . I also tried to change the header style and background mobile menu also has not changed at all .
Hi,
I have not tested this on the mobile theme so the css most likely needs to be changed. Please provide a link to your site so i can create the css code directly by inspecting the element.
Thank you!
Hi,
Please provide an example of what settings are you trying to change. The background can only be changed for the menu bar and footer. not the content. If the mobile menu colors are the ones that are not changing, please clear your cache and check again. sometimes cache affects theme settings. Also, if you use the mobile theme, the settings from here will not apply: http://screencast.com/t/pQI05NmqfNZ9 These are for the responsive version for mobile. If you use the mobile theme, all settings have to be done here: http://screencast.com/t/aAjqa1naan0
Thank you!
i’ve done this using “loop-single.php” and it’s working fine in desktop using this css and code
loop-single.php edit code :
<div class=”td-module-meta-info”>
<?php echo get_avatar(get_the_author_meta(’email’, $author_id), ’45’) . $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false);?>
<?php echo $td_mod_single->get_comments();?>
<?php echo $td_mod_single->get_views();?>
</div>
edit css :
” .avatar {
border-radius: 999px;
}
”
But when i add the same code in “/mobile/single.php” then

Please tell me css for mobile theme.