No search results were found in Documentation!
Hello,
I am using Newspaper theme v6.5 on my website. I have my website in multiple languges (English and Hindi)
URL – http://www.naukrinama.com & http://www.naukrinama.com/hi/
Now As the top bar is not visible on mobile devices, hence i am not able to give my mobile users an option to change their language. Hence i want to add an option is menu or just below the main menu bar in the header which is only visible on mobile devices and I am able to show two buttons over there with URL of my hindi and english site linked to it.
Screenshots : http://imgur.com/Dn8xFzB
Please let me know how can this be achieved.
Hi guys,
I’m setting up our site still but getting an odd error. On mobile view of temp url http://www.mglmix.com the admin bar overlaps the menu and leaves white space where it should be.
It’s odd, the bar also shows for people not logged in.
Is there a fix for this and a way to hide the bar for people just visiting the site?
Thanks
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/mPfLNpyt360m
@media (max-width: 767px){
.td-header-top-menu{
display: block !important;
}
Please note that the top bar wasn’t designed do be displayed on mobile devices so you may need additional customization in order to have it displayed fine.
Let me know how it goes.
Thanks!
The top menu does not show up on mobile and the hader background color will not update.
Hallo at my website topnews(dot)gr i have problem with mobile menu. When i itry to enter at mobile menuits redirect to /wp-admin/admin-ajax.php
Hello,
1) Unfortunately the plugin is not tested to work with our theme so we cannot assure it’s functionality. Not all plugins work with our theme but this is the case for all premium themes as they are custom made and plugin sometimes cannot recognize the code or conflict with it. Unfortunately we cannot offer support for plugin implementation.
2)Post style 4 does not show the caption of the featured image by default. It does show the caption for other images except the featured one. This is the default behavior of the theme.
The post style number does not match from newsmag to newspaper. This happens when switching to another theme. There is an alternative if you do not wish to change the post template manually that involves editing the database and resenting all posts to the default template and then you can simply add the template you want for all your posts from the theme panel/ Please follow this topic to see how it can be done: https://forum.tagdiv.com/topic/change-style-of-multiple-posts-at-once/
3)Mega-menus were not meant to display in the mobile version of the website.
4) Unfortunately the ‘go to top’ options was hidden on the mobile version. You can activate it with custom css if you want:
.td-scroll-up-visible {
display: block!important;
}
5)The speedbooster plugin has a function that checks for active plugins. There is a list of plugins speedbooster is compatible with – http://screencast.com/t/hcjLnOqh4i2 so if you have other plugins active it will be automatically disabled.
In order to use the tagdiv speedbooster with all plugins you will need to remove this code – http://screencast.com/t/RZLIOPUNdqh
I hope this helps
Thank you!
Hi,
i changed from Newsmag to Newspaper and now we have some small problems.
1. We use the plugin from plista (https://wordpress.org/plugins/plista/) for some advertising.
Today we create a page for the main menu and it works on homepage correct. But if you open a article or page, the plista plugin show the RecommendationAds in the menu also. The Plugin Author said this is an error by the theme, because the code is twice in the page. Line 325 + 525.
How could we change this? We dont want the RecommendationAds in the menu.
See live at: http://sek-einsatz.de/
2. The post template Style 4 dont show the image caption.
And is there a way, to change the template style 5 from newsmag automatically to newspaper style 4?
Because we didnt define style 5 on newsmag as default, so we now have to change a lot post manual to style 4.
3. On mobile the created page in menu will not shown. Thats ok, but is it possible to create an special “normal” menu only for mobile?
4. On mobile the “go to top” Button will not be shown.
5. tagdiv SpeedBooster doesnt work: “Speed Booster – v4.2 – Disabled – incompatible plugin detected: Ultimate_VC_Addons/Ultimate_VC_Addons.php”
Thanks for your support.
Hello joyceloh,
1) If you want to enlarge your logo size on your mobile mode, you should try a bit of CSS and add it in Theme panel->Custom CSS area, like this: http://screencast.com/t/Hu6ilCrf
@media (max-width: 767px){
.td-retina-data {
width:200px;
height:70px;
}
.td-main-menu-logo img {
max-width: 200px;
max-height:70px
}
}
The result you should see here: http://screencast.com/t/poBxwQrKrHr
2)If you want to reduce the padding-bottom and the margin-bottom you should also use a bit of CSS, like this:
.td_block_big_grid_3 {
padding-bottom:25px;
}
.td-a-rec-id-custom_ad_2 > div {
margin-bottom:25px;
}
The result you should see here: http://screencast.com/t/5Xfuc2l0nBEp
Hope this helps and let us know how it goes!
If is not what you mean, please provide more details.
Thank you for the message!
Is there anyway to add the Top Menu to the Mobile Menu other then just adding the CSS from this post to unhide it? Is there no way to add it to the menu-mobile.php??
Could it somehow be added to this:
<div class="td-mobile-content">
<?php
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
The Header Menu is there, could you just somehow add ‘td-demo-top-menu’ to that same “theme location”? I tried adding it next to ‘header-menu’ but that just broke the site. Adding the CSS the link above works, but it doesn’t look very good. I would rather not go that route if I didn’t have to.
Hello !
I could do the changes on php.ini but the problem is still on the website & on the header i got :
“; var td_ad_background_click_target=””; var td_ajax_url=”http://dooweet.org/fr/wp-admin/admin-ajax.php”; var td_get_template_directory_uri=”http://dooweet.org/fr/wp-content/themes/Newspaper”; var tds_snap_menu=””; var tds_header_style=””; var tds_mobile_swipe=””; var td_search_url=”http://dooweet.org/fr/search/”; var td_please_wait=”Please wait…”; var td_email_user_pass_incorrect=”User or password incorrect!”; var td_email_user_incorrect=”Email or username incorrect!”; var td_email_incorrect=”Email incorrect!”; var tds_more_articles_on_post_enable=””; var tds_more_articles_on_post_time_to_wait=””; var tds_more_articles_on_post_pages_distance_from_top=”0″; var tds_theme_color_site_wide=”#e51a1f”;
Do you have any idea how to solve it ? Thanks a lot for your help, and happy new year 🙂
Hi
You can define a new menu in td_menu.php file: http://screencast.com/t/crxUuOhFM Also you will need a script in header-menu.php which detect the mobile devices and load your custom menu: http://screencast.com/t/bIRVDKCmC Please note that this is a complex task which require many customizations and i can’t provide a solution now. My advice is to look for a professional developer to help you with this task if you can’t do it yourself.
Thanks!
Hello !
Happy New Year !!!
Is it a way to have a different and specific WPmenu only for mobile ?
At this time, i have splitted my contents on the two different menus (TopBar and MainMenu) and on desktop computer : it’s perfect … but on mobile, i show only the MainMenu and not the TopBar. I would like to make another third menu to merge important links of the two others.
Can you help me or implement this featurs in a next update ?
Thank you !
Hello,
The login is hidden by default on the mobile view. It can be activated using a custom css:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block!important;}
.td-header-sp-top-menu{
display:block!important;
}
.td_data_time{
display:none!important
}
.td-header-sp-top-widget{
display:none!important
}
}
The only way to add a custom login is either hard-coding it or using a plugin but we cannot make any recommendations as this type of plugins are not tested.
Thank you!
Hi.
I’m missing some of the text in some of my posts.
Take this as an example:
http://macweb.dk/vlc-kan-afspille-naesten-alle-filformater/
The original text in the first part is:
Mange har efterspurgt et program, som kan tage lidt flere formater end iTunes til Mac. iTunes er ikke kompatibelt med særlig mange film formater. Derfor skal man sidde og konvetere alle sine film, for at iTunes kan afspille dem.
But the start is missing, and shows only this:
kan tage lidt flere formater end iTunes til Mac. iTunes er ikke kompatibelt med særlig mange film formater. Derfor skal man sidde og konvetere alle sine film, for at iTunes kan afspille dem.
My custom CSS is:
@media (max-width: 767px) { .td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu { background-color: #fff!important; } #td-top-mobile-toggle i { color: #222 !important; } .header-search-wrap #td-header-search-button .td-icon-search { color: #222!important; } }
@media(max-width: 767px) { .home .wpb_revslider_element .forcefullwidth_wrapper_tp_banner { margin-top: 0 !important; } }
.td-post-template-1 .td-featured-image-rec { height: 280px; }
@media(max-width: 767px) { .td-post-template-1 .td-featured-image-rec { height: auto !important; } }
I’ll be looking forward to hear from you 🙂
Hello xmirz0,
I’ve checked your website and I saw that you have a lot of js. errors in your console, as you can see in this screenshot: http://screencast.com/t/j77VamREbw These errors might come from conflict plugins. Please try to disable all the active plugins, except Visual Composer, clear all caches, purge the CDN files if you used and install only the plugins that come bundled with our theme. Also, please try to identify what kind of plugin create this issue, disable all of them and install one by one and check which plugin generates the issue. We recommend using only our tested plugins, like this: http://screencast.com/t/f9BQ7y11TM If you want to use other plugins, please notice that we cannot provide support for this kind of untested plugins, sorry!
After this advice, if your problem is still there and your mobile menu still not working, please let us know.
Hope this helps!
Thank you for your understanding!
Hello zetam1320,
Our theme has been designed to use as default background color to black on the mobile version. If you want to change this color, you should use a bit of CSS. Please try the code below and place it in Theme panel->Custom CSS area, like this: http://screencast.com/t/N2KeCKjgcTHl
@media (max-width: 767px) {
.td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu {
background-color:red !important;
}
}
The result you should see here: http://screencast.com/t/qylZvC0v0
Hope this helps and let us know how it goes!
Thank you for the message!
mobile menu is not showing or working – can refer http://www.umnosubang.com.my
Hi, I’m using header style 10 with logo width set at 500px and have uploaded a separate mobile logo.
When I look on my phone, it shows the standard logo which is too large and only shows half of it, and the mobile logo only shows when I scroll down the page and it appears on the sticky menu.
Any help to get my mobile logo showing all the time without having to scroll down would be appreciated. Thanks
Is there a way to totally remove header menu on desktop and mobile? I’ve got only a handful of articles and would like to have only 1 category in the beginning.
Thanks!
Am I right that the mobile stick menu is always black? So I have to upload mobile logo that look ok on black background?
Thanks!
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/vaAbpb4CCmA
@media (max-width: 767px){
.td-header-top-menu{
display: block !important;
}
Note that the top bar wasn’t designed to work on mobile devices so you may need additional css customizations in order to be displayed fine.
Thanks!
Thanks Bogdan,
I’ve checked if errors on custom css code, but everything looks fine.
But still not working on mobile.
The code I’ve add is:
@media (max-width: 767px) {
.td-header-sp-top-menu {
display: block !important;
}
.td_data_time {
display: none !important
}
.td-header-sp-top-menu {
margin-left: 14%;
margin-right: auto;
}
}
I’ve put this code on custom css, but I don’t see the top menu on mobile…
Hello,
The top menu was not meant to work on the mobile version of the theme. It can be done with css though:
@media (max-width: 767px){
.td-header-sp-top-menu{
display: block !important;}
.td_data_time{
display:none!important}
.td-header-sp-top-menu{
margin-left: 14%;
margin-right: auto;
}
}
Thanks.
Hi,
how can I do to display the Top Header Menu on mobile?
My header style is 12 (Top colored menu with logo)
Thanks