Search Results for 'mobile menu'

Results from the Forum
eubox
tagDiv Member

Sorry for the delay, big thanks with the help it worked.
I would like to ask some other questions, which im stuck with for weeks.

1. When i enter my blog on the mobile version you can’t see the websites title name.

2. How to remove the search button from the menu panel?.

3. How to i remove the date and tags and the name of the post on the slider.

Thank you in advance.

Shmouuu
tagDiv Member

Hi,

Thanks a lot for your answer, it worked great! 3 related questions now coming:

1. It seems there is still only 5 subcategories showing on mobile.. I changed the parameter to 15 too in td_menu.php but didn’t change anything:
if ($sub_categories_count == 15) { // only show 15 subcategories in the mobile menu – the same limit applies to the mega menu
Any clue?

2. How can I have the article thumbnails on 2 lines so that I don’t have a big grey area now that I have a lot of subategories? Basically, I’d like something like that: http://screencast.com/t/PUfQGITF3gzb but combined with my category mega menu… I changed the ‘limit’ parameter of the array to 10 in the td_menu.php but it doesn’t seem to change anything. Could you please help?

3. Is there a way I can remove or change the display effect for the page thumbnails in this white area? Right now it looks like a “arrive from top” fade in as you can see on: http://www.imagespourapprendre.com

Thanks a lot in advance for your answers!
Best,
Sam

lighterside
tagDiv Member

Yeah, I’m no expert programmer, but after 7 hours straight troubleshooting this, I’m at my wit’s end. I cannot get the mobile menu to open at all on my friend’s Galaxy S3 (default browser), nor can I get it to load visibly on my Nexus 5 (Chrome browser). And we’re supposed to go live this Sunday for a large audience.

I tried disabled all plugins. Re-installed 4.5 again. Combed through very basic CSS items I’ve added. Nothing seems to make a difference. I’m obviously missing something, but steering blind at this point.

I noticed your demo site works fine on both our phones, as well as a few other sites people in the forum have referenced load fine too. But my site doesn’t.

Lucian, Radu… I have a registered user lock on the site, but will give credentials if you can please take a look.

Could really use some support on this. Thanks in advance.

lighterside
Participant
#0

After pressing the menu button, it slides all the way to the right and is not visible.

Please watch this video to see issue in action: http://youtu.be/r2ct43ve4y4

Website: http://lightersideofrealestate.com

Does it happen on your phone?

How can I fix this?

Thanks for your help.

simchris
tagDiv Member

Yeah. They removed the fixed layout a few versions back. And technically that “made sense” only because Google WANTS all sites to be mobile-ready, and sites work better when mobile friendly vs running separate sub domain, or a plugin which re-writes the entire site for mobile, etc. It also was difficult to manage a non-responsive layout while having al the fancy stuff people kept asking for, like megamenus, etc. — basically bloating the CSS with both responsive and non-responsive code and all the if/then stuff, made it less healthy for the majority of folk who do want a “responsive” theme.

Also, there are more and more underpinnings from Bootstrap inspired code, which is “responsive”…

esertan
Participant
#0

Hi,

Mobile menu icon and Main Slider Next,Previous buttons not working. How can i fix it.

Thanks

glikoz
Participant
#0

– what is the suggested size for Mobile Logos
– I made translations, but still my paging link is “page/3” not “sayfa/2” http://www.futbolne.com (also author->yazar)
– I need logo+adsense template for Header (without menu)
– I think your documentation obsolote for render-blocking issue. https://forum.tagdiv.com/how-to-make-the-site-faster/ (I could not manage or)

Note:Do we have email support? Or will we use the forum ?

igorx81
Participant
#0

Hi, I’ve set header style 3 (full width logo) + menu.

Then I choose a sticky menu (always or snap).

Now on mobile the menu is sticky, but the logo is not following it as for Style 1. Is it supposed to work this way or is it a bug?

Thanks

Lucian
tagDiv Staff

Hi,

You need to create and set a menu as header menu: http://screencast.com/t/h7NTPYxpx
The mobile menu is build after the main header menu so this will also work after you set-up an menu.
You can read here about how to create a menu: https://forum.tagdiv.com/menu/
You should also consider going over the whole documentation to find the best ways on how you should use the theme.

Thanks

instacomedy
Participant
#0

Hi, I need help please!!!

For some reason the main menu and mobile menu are not working… I’ve been trying for 3 days to fix this issue but i can’t seem to figure it out… I am no web developer and do not have any coding skills, its my first time using WordPress. I’ve read on the forums and on wordpress forums and i think i’ve managed to do everything i should of done for it to be able to work. My site is http://www.fmxmag.com if you can please take look…

tms
tagDiv Member

pls refer to the attached snap.
The mobile theme is deactivated.
you can see the visual composer plugin settings so that shouldn’t be an issue either.
i don’t work on JS so don’t know if that’s an issue, still.
deactivated all plugins, other than VC and did all that you listed.

no improvement.

i used this theme and the mega menu successfully on another site, so i’m sure nothing wrong in how i create the menu.

Could you pls look into the matter again and help me out.

Lucian
tagDiv Staff

hi,

The mobile menu it’s build based on the header menu, you can modify this if you like to add the top menu after it, you can find the code here: http://screencast.com/t/IWRRbscy3
Unfortunately this means custom work and we cannot offer custom work at this moment as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.

Thanks for understanding!

Lucian
tagDiv Staff

hi,

The top menu doesn’t appear on mobile screens because it’s set to be hidden, you can change this and set it to be displayed via css, like this: http://screencast.com/t/cqcCAz8pu

@media (max-width: 767px){
.td-header-menu-wrap {
display: block !important;
}
.affix .mobile-logo-wrap img {
height: 100%;
}
.mobile-logo-wrap img {
height: 100%;
}
}

Thanks

baldvin
Participant
#0

Hi – the topmenu on my site does not appear on mobile devices – can you please help?
My site is here: http://skatamal.is/

thank, gp

Lucian
tagDiv Staff

Hi,

Menu’s alignment is set from header.php file, you can change the top menu location by moving this line locate_template('parts/menu-top.php', true); and add it after the header menu for the style you want to use, like this: http://screencast.com/t/l0f8ud7l
From my example you will get this result: http://screencast.com/t/I8NVJyDA
Note that this will move the top-menu on all screens after the header menu so it would be better(if you only need it in mobile screens) to use this css to set it to be displayed only for mobile screens:

.td-header-menu-wrap {
display: none;
}

@media (max-width: 767px){
.td-header-menu-wrap {
display: block;
}
}

Thanks

igorx81
Participant
#0

Hi, is there a way to show Top Menu under Header Menu in the same lateral tab?
I’ve got many links ans I didn’t want them to appear on top on mobile devices (as here via css).

Thanks

samnaun2000
tagDiv Member

When the Article is fully loaded, the sticky menue does work on mobile devices. We tried switching off Plugins without success. The js errors are caused by ad-scripts … without these scripts there is no change to our our problem with the sticky menue … i really have no idea what to do.

Lucian
tagDiv Staff

Hi,


@tms

Please deactivate the mobile theme to fix the shortcodes issue: https://forum.tagdiv.com/how-to-manage-the-mobile-theme/
Also please make sure you have installed the Visual Composer plugin right following this guide: https://forum.tagdiv.com/update-the-visual-composer-plugin-wpbakery/
The mobile menu and the mega menu work based on js and I have found all this errors which could generate this, in your console: http://screencast.com/t/jgtCSvbd
Please make sure you deactivate all plugins including cloudflare and cache you use, leaving just the Visual Composer active and empty all cache then purge files and check this again, also look for errors in the console.
Both mega menu and mobile menu work fine, I have tested this using the latest theme version and found no issues with it.
Also make sure that you set and use the mega menu right: https://forum.tagdiv.com/how-to-use-the-megamenu/
Please let me know if this helps!

@aces231
Please send your site’s URL so I can inspect this.

Thanks

tms
tagDiv Member

BTW, I disabled all plugins, put cloudflare into development mode, and flushed/purged all cache. Mega menu and mobile menu still not working. In mobile I am only getting the option to http://www.mydomain.com# (# symbol next to it taking you home always) no dropdown menu exists.

Besides cloudflare, I am also using SiteGround SuperCacher and Memcached.

tms
Participant
#0

I have no idea what is going on. Please help me. http://goo.gl/TlcMwf Thank you!

Lucian
tagDiv Staff

Hi,

Have you managed to fix this?.. as I have just checked your site and found that the menu button looks fine now on mobile screens: http://screencast.com/t/unMrXfQiSHf
You need to use the jetpack plugin for that gallery, here you can read more about how to achieve this: https://forum.tagdiv.com/how-to-make-a-gallery/
Please let me know if your have any other theme related issues.

Thanks

sikpup
Participant
#0

Ever since the update the menu on mobile has a weird “play button” looking Icon and doesn’t work very fluidly. How do I fix that? I read somewhere where I may have a cache plugin, but I am not even sure how to resolve that issue. My site is http://www.modelthrowdown.com

Another quick question I had is how did you get the gallery to look like you did in this preview. Was that using another plugin? http://demo.tagdiv.com/newspaper/seat-and-enjoy-about-this-amazing-theme/

leaco
tagDiv Member

Hey,

My site is RTL modified, after the update the mobile menu icon moved from the original placement at left. I emptied all cache, still the same. my url – http://www.xmag.co.il

gomerblog
tagDiv Member

Thank you for the help. I re-installed it. The taboola error was fixed, the mobile menu is still not working. Am I missing a setting somewhere? Thanks

leaco
Participant
#0

Hey,

After updating to the latest version – the mobile menu button appear on the right side instead of left, how can I change it back?

Thank you,
Tzachi

Viewing 25 results - 7,676 through 7,700 (of 8,091 total)