- 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
- ApiUsing the Theme API in plugins
I do find the copyright one works on mobile and tablet (at least, mine does).
One way to disable the widgets, although it’s just lazily hiding it, is this:
1. Install https://wordpress.org/plugins/zigwidgetclass/
2. Give all the widgets in the footers you don’t want a class like hide_on_mobile
3. Go to Theme Panel -> Custom CSS and create a class like this:
@media (max-width: 1018px) {
.hide_on_mobile {
display: none !important;
}
}
@media (min-width: 1019px) {
.hide_on_mobile {
display: initial !important;
}
}
Note that you may have to use a different number of px to pick out the exact screen sizes you want. If I remember right, the other breaks used in the theme are 1200, 768, and 480.
Hi
I would like to disable the Footer 1 and 2 on mobile and tablets but show it on desktop only. If its not possible, I want to show the footer at the bottom (copyright one) on mobile and tablet.
Please help.
Thanks
I noticed that on my site a few days earlier but I thought it was conflicting with my custom code but turns out everyone is having this problem. tagDiv any fix?
Me too
I have a problem with home and search icons on the mobile version of my website.
On PC, everything is ok, but on ipad or android phone, icons are missing or wrong.
Hi,
My site (www.lesniews.com) is working fine on desktop, but not properly on smartphones. I have fixed the setting to “full responsive” in theme panel. Yet, when people open the site on mobile, they get a “default mobile version” showing the page code ! and at the very bottom (which noone sees), a “show full site” link that, when clicked, properly displays the site for smartphones.
I do not see in WP/Theme setting where to fix this. Could you please help as soon as possible.
Thank you in advance for your help and overall great work with this theme,
Best, Yan
You likely need to remove the auto generated echo home_url() to the static URL you want in all the header-styleX.php files to be safe.
in the /parts/ folder, try the
header-style-1.php
logo-mobile.php
edit this line
<a itemprop="url" href="<?php echo home_url(); ?>">
<img width="300" class="td-retina-data" data-retina="<?php echo htmlentities($td_customLogoR) ?>" src="<?php echo $td_customLogo?>" alt="<?php echo $td_logo_alt ?>"<?php echo $td_logo_title ?>/>
</a>
need to replace these
href="<?php echo home_url(); ?>"
with
href="http://yoursite.com/directory"
Thanks very much for such detailed answers. Can you please come to skype for just few minutes. I tried to add it up but making mistakes. If you don’t mind 🙂
I want to implement as you described it in the last post. But as i am not expert of PHP, i am making some mistakes. I want to insert groups and wants the output in the second tab like this page is displaying features of mobiles.
But this is displaying straight away i want to put these features using advance custom fields in tabs like first tab is for Text that i will put inside text box and second will be for Custom fields.
I think i already took a lot of your time and support from you. If you can help me in finishing it, it will be really helpful for me.
Thanks
Hi,
Please use this custom css to fix this:
@media (max-width: 767px){
.td-header-bg .header-style-3 .td-logo img {
position: fixed;
top: 3px;
z-index: 3;
width: 180px;
height: 48px;
}
.td-menu-placeholder .td-affix {
height: 48px;
z-index: 2 !important;
position: fixed !important;
}
}
Should work like this: http://screencast.com/t/OTIVJzbYW8p
The logo looks like that because of it’s original size, try to add an logo for mobile from theme panel.
Thanks
Hi,
The menu loaded on mobile screens it’s different in appearance and functionality from the one used for the tablets and desktop screens so the mega menu dose not work on mobiles. In order to have an category with it’s subcategories you will have to add them like this: http://screencast.com/t/y9FnwtA0g which will be displayed like this in the mobile menu: http://screencast.com/t/lh5kwtedaaUP
If you decide to use the mega-menu to display a category with subcategories you will not have the subcategories displayed in the mobile menu.
A workaround would be to add the category twice in the menu from appearance > menus, once to display the subcategories as a mega menu and once to to add the subcategories as sub-items then use custom css to hide one on desktop/tablets and the other on mobiles.
Sorry about the inconvenience.
Hope this helps!
Thanks
-
This reply was modified 11 years by
Lucian.
Hi,
Sorry for the delay on which I’m answering.
@dexterion
Please send an e-mail at contact@tagdiv.com so we can send you a fix for this. Please note in your message this issues details or send a link to this topic.
@Ljubisa B.
Do you still have this issue? I have checked your site and found no issue with the mobile menu icon: http://screencast.com/t/RNDMJRoF1z6U
Thanks
Can I give you access here? I am still experiencing this issue.
Thank you so much, worked fine 🙂
Hi,
another thing that is annoying me, I don’t know if it’s my fault or not but I find the behavor of the mega menu while converted in mobile version very strange :
I have a category with 4 sub categories, and I want to display them, so I choose the parent category to be mega menu, It works like a charm on full width version, I can see all the sub categories and navigate in them with all the links and thumbnails.
But when my menu is converted into mobile version I see only the parent category and not the child categories, I don’t understand the logic here… why do we have something different from full width to mobile ?
is there a way to display the sub categories also on mobile menu without changing the full width menu ?
thank you
Hi,
Use the following custom css to fix the header:
@media (max-width: 767px){
.mobile-logo-wrap img {
top: 2px !important;
height: 100% !important;
}
}
@media (min-width: 768px) and (max-width: 1018px) {
.header-logo-wrap {
height: 69px;
}
.header-logo-wrap img {
margin-top: 20px;
}
}
@media (min-width: 1019px) and (max-width: 1200px) {
.header-logo-wrap {
height: 80px;
}
.header-logo-wrap img {
margin-top: 25px;
}
}
@media (min-width: 1201px){
.header-logo-wrap {
height: 100px;
}
.td-header-bg .header-logo-wrap img {
margin-left: 67px;
margin-top: 28px;
}
}
Noticed that you have figured out how to change the background: http://screencast.com/t/t7GgF5vlI
Glad you did!
Thanks for the message!
Hi,
Use this custom css, like this: http://screencast.com/t/IveE0vfW23
@media (max-width: 767px){
.td_block_big_grid {
display: none;
}
.td-grid-wrap {
padding: 0px 0px 0px 0px !important;
}
}
Remove the .td-grid-wrap {padding: 0px 0px 0px 0px !important;} if you want to keep the spacing above the ad.
Thanks
Hi,
Use this css to make the logo look like this: http://screencast.com/t/22Ydp8GV7a3R
.mobile-logo-wrap img {
height: 100% !important;
width: auto !important;
top: 0px !important;
}
@media (max-width: 767px) {
.td-menu-wrap {
height: 55px !important;
}
}
Change the values as you like.
Regarding the “menu icon” I have noticed that it’s there now: http://screencast.com/t/DJlgZSaviL also looks like it should. Please let me know if you have any other issues with this.
Thanks
I have the same problem maybe someone can help, ICON from Mobile Menu disappeared. Thanks in advance. My Link is http://www.football-eu.com
-
This reply was modified 11 years by
Ljubisa B..
i have a small problem with the mobile adaptation
this is how the menu looks on mobile, same with an ipad

this happened with the latest update,
it looks nice on chrome though

could someone help me please
Hey Guys, I tried disableing the big slider on mobile view with this code in the custom css
@media (max-width: 767px) {
.td_block_slide_big {
display: none;
}
}
but it did not show any results…. 🙁
Any idea? Thanks alot 🙂
Hi,
Follow these steps:
1. First you have to register the new-menu, for that go to td_menu.php file and add this line: http://screencast.com/t/WJy9nhodUS
'header-menu-login' => __( 'Header Menu login (main)', TD_THEME_NAME),
You will get this result: http://screencast.com/t/ihF4cmqRgq
2. Secound go to menu-header.php file and add this condition like, this: http://screencast.com/t/OtKQsOJosx0
if ( is_user_logged_in() ) {
wp_nav_menu(array(
'theme_location' => 'header-menu-login',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
} else {
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
}
3. Do the same for mobile menu, into menu-mobile.php file: http://screencast.com/t/3CQa5fpkw
if ( is_user_logged_in() ) {
wp_nav_menu(array(
'theme_location' => 'header-menu-login',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
} else {
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
}
After this set which menu you want for logged visitors and which for unregistered visitors and test it.
Hope this helps!
Sorry for the delay!
Thanks
Hi,
I’m having an issue with logo display on mobile.
I’m using header style 2, and i’ve configured same image on both places (Logo => Logo upload & Logo for mobile => Logo mobile In Menu).
I had logo problems in the past, and i was told to add following css:
.mobile-logo-wrap img {
height: 100%;
width: auto;
top: 0px;
}
but since recent theme upgrades (older than 4.2.1), i have a new display issue.
Is there a way to use Style 2 and adapt custom CSS ?
my site:
http://www.fantasy-coach.fr
Also, ‘menu icon’ is no more visible on mobile, this is since 4.2.2 upgrade, any advice on that?
thanks for your herp
BR
Hi,
@jenny_moviral
The slider looks like that because was modified, I have noticed that it’s been fixed at 330px height http://screencast.com/t/9iuNrQrt4jNs this is the reason for the slider looking like that and you need 4 posts in the slider not 3 , try to remove that custom css and check if this is still happening.
Also noticed that you are using the 3.5 theme version. We have changed the layout for the slider on mobiles from version 4 if I remember right so you can try it. Make sure you make a backup of your current theme so you can revert back top it if things don’t work well as we made some changes until 3.5 version. http://screencast.com/t/9iuNrQrt4jNs
@mrsky28 Do you have the same problem? Please send me an URL to your site so I can inspect this.
Thanks
-
This reply was modified 11 years by
Lucian.
@Christopher Just to let you know that I have fixed the issue but still messes up the mobile site. So, I moved the plugin from Bootstrap to PurceCSS and it works fine.