- 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
Hey,
the top menu is deactivated in mobile view because it looks better without. But then there is no Login/Logout/Register button for users. So I changed the menu-mobile.php to this:
I think this isn’t the best solution but it works fine. When user is logged in there is a logout button and when user isn’t logged in there is a login/register button in mobile menu.
Hope it will help you.
<?php
/* ----------------------------------------------------------------------------
This is the mobile off canvas menu
*/
?>
<div id="td-mobile-nav">
<!-- mobile menu close -->
<div class="td-mobile-close">
<a href="#"><?php _etd('CLOSE', TD_THEME_NAME); ?></a>
<div class="td-nav-triangle"></div>
</div>
<div class="td-mobile-content">
<?php
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
//if no menu
function td_wp_no_mobile_menu() {
//this is the default menu
echo '<ul class="">';
echo '<li class="menu-item-first"><a href="' . esc_url(home_url( '/' )) . 'wp-admin/nav-menus.php">Click here - to use the wp menu builder</a></li>';
echo '</ul>';
}
?>
<ul>
<?php
if ( is_user_logged_in() ) {
echo '<li class="menu-item"><a href="' . wp_logout_url(home_url( '/' )) . '"> LOGOUT</a></li>';
} else {
echo '<li><a href="#login-form">LOGIN/REGISTER</a></li>';
}
?>
</ul>
</div>
</div>
Hello,
I have problem with social shares in Newspaper theme. This is what visitors see when they are accessing with Chrome browser

And this is with Opera

But on another PC it’s showing correct on Chrome but not on Opera web browser.What could be the problem? On my mobile phone everything is OK.
I’m using theme version V 6.3
Thanks
Best regards
Hello,
1) The top menu containing the login widget is hiden on the mobile version. It was a design choice and it can be forced to appear using custom css:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}
Just add the code in the theme panel->custom css box.
2) and 3) please provide more details to your problems. Be more descriptive and provide a link to your website so we can inspect the problems and come up with a solution.
Thank you!
Hi sejpost,
Yes, it is possible. First of all you must create a custom link within wordpress like this-> appearance->menu->custom link: http://screencast.com/t/cwbTeaDq and in next step please try a bit of css below:
@media (min-width: 768px){
.menu-item-57 {
display: none;
}
}
Attention: Every custom link newly created has a different id and you must target this in CSS for a result. This id you can find like this: http://screencast.com/t/Nz1kracbMa7a
The result: http://screencast.com/t/812JzGp9473 http://screencast.com/t/V6fAus84ivvx
For your second request, our theme has not been designed to display view of the desktop version in mobile version.
If is not what do you want, please provide more details.
Hope this helps.
Thanks.
-
This reply was modified 10 years by
Catalin.
hi i have 3 problems
1: login in the header doesn’t show for the mobile user
2: i cant activate the newspaper theme in my site stel told my when i try contact activate team
3:taps when i click on any tab text on the tab disabeer
Hi,
You can check the our demo and see how the mobile menu works – http://screencast.com/t/j13jVsaxT0i if you need another implementation I suggest to get a professional developer to help you with this as the time doesn’t allow us to provide custom work. Also the plugin you use for for menu affects the the theme as the theme has already a mobile version.
Thanks!
Hello,
The theme was built in such a way that there are 2 header styles (in your theme version) that do not pick up the mobile logo. These are style 3 and style 6. You are using header style 3 and this is a normal behavior of the theme, not a bug.
You could try to alter the theme files to force it to pick up the mobile logo but this requires custom work which unfortunately we cannot provide.
I hope this helps.
Thank you!
Hi jimmysong,
For get a transparent background, please follow the steps below:
http://screencast.com/t/bmQ9e6Cd
This steps you should follow and for top menu/main menu or mobile menu background color within Theme panel.
An exemple you can see here: http://screencast.com/t/d4qUaS9y5c5
Thanks and let us how it goes.
Hey,
Thanks. Looking better but it is still displaying the PC logo on mobile.
I use two different logos, one for destktop and one for mobile display.
They are properly loaded in the theme panel so I don’t get why it’s not working.
Hi
You can hide more article box for mobile devices using this custom css in theme panel > custom css: http://screencast.com/t/cO9GiCcQ4nT0
@media (max-width: 767px){
.td-more-articles-box {
display: none;
}
}
Thanks!
Hello
I have a problem with the Mobile theme. Since the upgrade to the latest version the Masonry Grid Excerpts (on home page) are showing in a thin column to the left of the screen and not full width. website: http://www.rockshot.co.uk/dir
I have disabled all plugins and cleared the cache so not sure what the problem is. Posts are showing correctly and this is a new problem since I upgraded the theme. Checked on iPhone 5s.
Any ideas.
Thanks
Hi
1. We plan to add new post templates for Newsmag theme in future and some of them will have a similar layout with post template 11 from Newspaper. Unfortunately I can’t provide a quick solution now as this task require lots of customizations in theme’s core files. Also the new template must be tested on different browsers and devices. This customizations requires lot of time and unfortunately we can’t provide customization services at the moment. We would have gladly made it for you but we are a small team and we are working very hard on the development, updates, fixes and support.
2. I am not sure what you mean as the mobile menu have the same layout on both themes:
Newsmag: http://screencast.com/t/8zR3nuwnBVq
Newspaper: http://screencast.com/t/wyYo9FM0JN
If this is not what you mean please provide more details.
Thanks!
Hello,
Sorry to bother.
I’m trying to achieve something simple but could not figure why it’s not working.
I would like to put this logo on PC : http://www.journaldufranc.com/wp-content/uploads/2015/02/newF5.png
And this logo (gif) on Mobile : http://www.journaldufranc.com/wp-content/uploads/2015/10/Fmobile1.gif
I used the upload function via the Theme panel respectively for Desktop and Mobile menus. But it’s not working.
Then I noticed the logo was hidden behind the other logo (or the menu bar) on mobile, so I tried
.td-header-style-3 .td-header-sp-logo {
background-image: url(“http://www.journaldufranc.com/wp-content/uploads/2015/10/Fmobile1.gif”);
}
.td-header-style-3 .td-header-sp-logo img{
display:none;
}
But still not.
Could you tell me how to achieve this ?
Thanks for your assistance
I have purchased Newspaper theme but 980px width is not available in that theme and also i sent support message to you to make newspaper theme 980px but you replied me to hire some technicians from envato studio but instead of hiring some people and makes changes i planned to buy newsmag theme.
but i want some adjustment in this theme , is this possible
1. I want to use newspaper theme’s post template 11 in newsmag theme.
2.In Newsmag theme I want to make mobile menu appearance like newspaper theme’s mobile menu.
Please help us to make this changes , i planned to buy newsmag theme on 27/10.
If above 2 changes is made means we will be comfortable with your theme
Hi,
The code i provided removes the bottom border and changes the background color for the ad container.
The theme was not built to support big logos to cover the containers like that. The recommended logo dimensions are these: http://screencast.com/t/wRIpx7CxBGJV. In order to make the logo fit on mobile phone you can make a smaller logo and add it as a background image to the container in the mobile version.
You will need a bit of css knowledge to get it done.
As an example:
@media (max-width: 767px){
.td-header-style-10 .td-header-sp-logo {
background-image: url("your image url");
}
.td-header-style-10 .td-header-sp-logo img{
display:none
}}
It will need further customization to fit properly though
Thanks
We are using an Adprime ad with a backup adsense ad in our inline ad after the 4th paragraph. Our question is, how do we get a non adsense inline ad to not run paragraph 5 and 6 together. If i turn the ad off, the spacing between paragraphs is normal. This problem only appears on mobile when using a non adsence inline ad on the theme module.
hi, as of last night i have realized that my front page images are not showing on the desktop version. The mobile site works fine. I ran a check through 15 DIFFERENT BROWSERS and only ONE shows the site properly and that is Internet Explorer 11. I went ahead and checked with my hosting provider and they said everything is good on their side, i disabled all plugins, cleared the cache on my page, browser…. same result. Deleted the theme and installed it again. It can back with the EXACT same settings which i found strange but anyhow… i would like to get this fixed….
My website is http://www.JamaicanMoments.com
Hi @grupoinnovate,
I suggest you to use a plugin like Category Order and Taxonomy Terms Order. Please note that we did not test it with the theme, but I see that many users use it.
If you want to put the word “Miami” before the date in your top bar menu, please follow this step below:
http://screencast.com/t/ZZff0BVp
Here you can see the result: http://screencast.com/t/Nej9juTpyvjb
To fix the problem with mobile, please try this custom CSS:
http://screencast.com/t/xF2CF4NVGusq – http://screencast.com/t/D0iA5AnY
@media (max-width: 767px){
.td-header-top-menu-full, .td-header-sp-top-menu {
display: block!important;
}
}
Hope this helps!
Thanks and let us know how it goes!
Hi,
The theme has no control to change fonts on mobile or desktop. The fonts are kept the same. Please provide more details where the fonts are changed because i could not find changing fonts upon inspecting your site.
Thank you!
Hi
The theme wasn’t designed to display the top menu on mobile devices, but you can use this custom css in theme panel > custom css to display it: http://screencast.com/t/AjbppVaZrk
@media (max-width: 767px){
.td-header-top-menu {
display: block;
}
}
Thanks!
Hello,
For a caching plugin we have tested WP Super Cache to work with our theme. We recommend you use that one instead of ZenCache.
As for the JetPack plugin, it was tested to work with our theme but not all options work. It has a lot of features and some of theme cause problems not the plugin itself. For a start do not use the Photon feature because it interferes with the theme images function. Make sure you also uncheck the mobile theme or it will display errors on your mobile version. Make sure you only use the features you need and disable the rest.
Thank you!
We bought the Newspaper Theme, and now we have some doubts, so we need your help:
Site: http://realestatehoy.com.grupoinnovate.com/
– Look for the menu NOTICIAS, we need to organize the subcategories menu in a different order than alphabetic.
– In the Top Bar we need to put the city (Miami) before de date.
– We have notice that the Top Bar disappears in mobiles, how can we make it visible even in mobiles?
Hello,
I tried to disable ads on desktop using theme panel option DISABLE ON DESKTOP but it’s not working because it’s showing ads on all devices. I want header ad to be shown only to users with mobile/tablet devices but it’s loading on desktop too.

I’m using Newspaper – Theme panel version: 6.3 and WordPress 4.3.1.
Is there any solution for this problem?
Thank you
Kind regards
Hi,
The theme uses the add_image_size() function and the featured image is cropped to different sizes(thumbs) used on modules/blocks. So for mobile devices it is not used another thumb and it is scaled that’s why this error appear.
To have a different image size for each device your will have to create a script to crop the image also for tablets and phones, but even then you may have this errors as like you know there many resolutions for these devices and I’m afraid it will be almost impossible to achieve this.
Thanks!
Hi again,
I have tested the VC Image carousel element and found no issues with it on mobiles, it works fine: http://screencast.com/t/oJqZYlvyPNS – http://screencast.com/t/UXZCWNoUdgo so please let us know if this is the image carousel you have also used and if so give more details so we can recreate and investigate this.
I have checked your site and noticed you now use WpF Ultimate Carousel for images which we haven’t tested so it may not work fine with the theme. If this is the cause I suggest you contact plugin’s authors and let them know about this, they might have a solution for you.
Thanks for the message!