- NewsmagTheme colors introduction
- NewsmagSmart list ads
- NewsmagIntroduction
- NewsmagMain menu
- NewsmagLogo & Favicon
- NewsmagHeader ads
- NewsmagSmart sidebar
- NewsmagSharing buttons
- NewsmagCategory tag on modules/blocks
- NewsmagBackground introduction
Hi,
@ozgur Seems the mobile plugin is not active at the moment on the website, the default responsive version is displayed on mobile
– https://www.screencast.com/t/iKQJSKorM
When you activate the mobile plugin, a different and lighter version of the website will be displayed instead. Here you can find more about how it works
– https://forum.tagdiv.com/the-mobile-theme/
Thanks
Hello,
The jetpack photon does not work with our theme at all, no matter if you use the mobile theme or not. Sorry but there is no simple solution to make photon compatible. Sorry
Hello,
If you do not use the mobile theme, then you can only hide the login with css. Please use this code in your theme panel-> custom css box:
@media(max-width:767px){
.td-menu-login-section{
display:none;
}
Thanks.
Hi,
The mobile theme plugin is sensitive when it comes to caching. We have only tested it with the recommended WP Super Cache plugin, in these circumstances it will work properly
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
– https://forum.tagdiv.com/cloudflare-cdn/
Other caching configurations are causing issues in some cases, similar top what you are describing. Note that the mobile plugin is optional, so a solution would be to simply deactivate it. The main theme has a responsive design so there will not be any problem.
Thanks
Hi,
Mobile theme files cannot be modified through the child theme, at the moment. Support could be added in future update for this. You will have to make the modifications in the main theme files, and maybe back them up before updating the theme. That way you will not loose them after an update.
Thanks
I am using the Jetpack Photon for saving bill, and resize my image. All pages on the desktop are work fine. But its doesnt not work on the mobile homepage, category page.
Can you help me please? The link https://thich.com
Hi
How to edit mobile menu and remove/edit login options from mobile menu.
Im not using Mobile theme and i cant use it because some plugins dont work with this properly.
Thanks
tagDiv Mobile Theme works only when user log in – when log out – it works like standard theme
Update about sittuation…
I did add this lines to fix Leverage browser caching part ——-
# BEGIN EXPIRES
ExpiresActive On
ExpiresDefault “access plus 10 days”
ExpiresByType text/css “access plus 1 week”
ExpiresByType text/plain “access plus 1 month”
ExpiresByType image/svg+xml “access 1 month”
ExpiresByType image/gif “access plus 1 month”
ExpiresByType image/png “access plus 1 month”
ExpiresByType image/jpeg “access plus 1 month”
ExpiresByType application/x-javascript “access plus 1 month”
ExpiresByType application/javascript “access plus 1 week”
ExpiresByType application/x-icon “access plus 1 year”
# END EXPIRES
——————-
Now the result is rised up to 78/100 from 52/100 for mobile and 90/100 from 50/100 for desktops… Amazing result…
Just wondered why this is not coming with our theme? I mean that helped alot?
Good day…
I am having bad “Google PageSpeed” test results for my site http://www.adelturk.com (Result: https://developers.google.com/speed/pagespeed/insights/?hl=eng&%3Furl=adelturk.com&url=adelturk.com )
I did disable all plugins that are not coming with original Newspaper theme to avoid possible slow time. So it is only 4 plugins active which are came with theme ( tagDiv Composer | tagDiv Multi-Purpose | WPBakery Page Builder )
Would you please take a look at the result and tell me why the results are not okay. It shows %89 rate for
https://demo.tagdiv.com/newspaper/ here >> https://developers.google.com/speed/pagespeed/insights/?hl=TR&url=https%3A%2F%2Fdemo.tagdiv.com%2Fnewspaper%2F&tab=mobile
Regards…
Hi, does the mobile plugin support childe theme? As for personal needs I had to change the thema.
Thanks,
Marco.
Hi,
I added the custom code to the stylesheet and it keeps flickering…..
Forget about the mobile menu, I picked white background because of my frustration that the theme was not recognizing the alpha channel….
What really worries me is the flickering….
Hey,
I’ve just installed the Mobile Theme and am running into this current issue of a 500 error on mobile only. I’ve deactivated all plugins that I can. Others I cannot because it is either managed by WordPress or I’m afraid deactivating the other plugins for fear of losing all data associated. Newspaper theme is currently updated via Envato Market plugin and sitting at version 8.5.1. Cache was cleared, then those caching plugins deactivated. Deleted and reinstalled mobile-theme plugin. Same 500 error and what’s weird is that it’s only occasional.
I also cannot update via FTP as we have WordPress hosting and they do not allow back-end access.
Anything else I can try?
Thanks for your time,
-TW
-
This reply was modified 8 years by
tacomaweekly.
The AMP plugin from Automattic works just fine with TagDiv themes.
The AMP endpoint /amp/ and the mobile version should coexist, as the /amp/ endpoint only works for amp-compatible devices/apps.
Remember to resave permalinks after enabling the AMP plugin. See the AMP help forum for more info.
( I don’t work here. )
here is the file that works perfectly – if you do not use buddypress.
<?php
/* —————————————————————————-
the default page template
*/
get_header();
//set the template id, used to get the template specific settings
$template_id = ‘page’;
$loop_sidebar_position = td_util::get_option(‘tds_’ . $template_id . ‘_sidebar_pos’); //sidebar right is default (empty)
//get theme panel variable for page comments side wide
$td_enable_or_disable_page_comments = td_util::get_option(‘tds_disable_comments_pages’);
//read the custom single post settings – this setting overids all of them
$td_page = td_util::get_post_meta_array($post->ID, ‘td_page’);
if (!empty($td_page[‘td_sidebar_position’])) {
$loop_sidebar_position = $td_page[‘td_sidebar_position’];
}
// sidebar position used to align the breadcrumb on sidebar left + sidebar first on mobile issue
$td_sidebar_position = ”;
if($loop_sidebar_position == ‘sidebar_left’) {
$td_sidebar_position = ‘td-sidebar-left’;
}
/**
* detect the page builder
*/
$td_use_page_builder = td_global::is_page_builder_content();
if ($td_use_page_builder) {
// the page is rendered using the page builder template (no sidebars)
if (have_posts()) { ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class=”td-main-content-wrap td-main-page-wrap td-container-wrap”>
<div class=”<?php if (!td_util::tdc_is_installed()) { echo ‘td-container ‘; } ?>tdc-content-wrap”>
<?php the_content(); ?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
?>
<div class=”td-container”>
<div class=”td-pb-row”>
<div class=”td-pb-span12″>
<?php comments_template(”, true); ?>
</div>
</div>
</div>
<?php
}
?>
</div> <!– /.td-main-content-wrap –>
<?php endwhile; ?>
<?php }
} else {
//no page builder detected, we load a default page template with sidebar / no sidebar
?>
<div class=”td-main-content-wrap td-container-wrap”>
<div class=”td-container tdc-content-wrap <?php echo $td_sidebar_position; ?>”>
<div class=”td-crumb-container”>
<?php echo td_page_generator::get_page_breadcrumbs(get_the_title()); ?>
</div>
<div class=”td-pb-row”>
<?php
switch ($loop_sidebar_position) {
default:
?>
<div class=”td-pb-span8 td-main-content” role=”main”>
<div class=”td-ss-main-content”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile;//end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
</div>
<div class=”td-pb-span4 td-main-sidebar” role=”complementary”>
<div class=”td-ss-main-sidebar”>
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case ‘sidebar_left’:
?>
<div class=”td-pb-span8 td-main-content <?php echo $td_sidebar_position; ?>-content” role=”main”>
<div class=”td-ss-main-content”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile; //end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
</div>
<div class=”td-pb-span4 td-main-sidebar” role=”complementary”>
<div class=”td-ss-main-sidebar”>
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case ‘no_sidebar’:
?>
<div class=”td-pb-span12 td-main-content” role=”main”>
<?php
if (have_posts()) {
while ( have_posts() ) : the_post();
?>
<div class=”td-page-header”>
<h1 class=”entry-title td-page-title”>
<span><?php the_title() ?></span>
</h1>
</div>
<div class=”td-page-content”>
<?php
the_content();
endwhile; //end loop
}
?>
</div>
<?php
if($td_enable_or_disable_page_comments == ‘show_comments’) {
comments_template(”, true);
}?>
</div>
<?php
break;
}
?>
</div> <!– /.td-pb-row –>
</div> <!– /.td-container –>
</div> <!– /.td-main-content-wrap –>
<?php
}
get_footer();
Hello Alle79,
Provide your website URL so I can check it for Mobile Devices. DO you are using the Mobile Theme?
Thanks for the message!
Hi,
It will be considered, more ad placement options could be added in a future theme update, both desktop and mobile. I could not give you a time estimate however.
Thanks
Hi,
I believe it was a design choice to hide the excerpts for that block on mobile. I could give you a code to make them visible if you need it, the block will look like this with excerpts
– https://www.screencast.com/t/ZyTu00ZxQ
Enter the code in Theme panel->Custom code->Advanced CSS in the phones section.
.td_block_12 .td_module_11 .td-excerpt {
display: block;
}
The length of the excerpt can be controlled for each module
– https://forum.tagdiv.com/excerpts-introduction/
Thanks
Hi,
You could use inner rows to multiply the columns, maybe you could create a different layout in this case
– https://www.screencast.com/t/B8LzYYuJbd
On mobile the columns will be displayed one after the other. Also a possible solution would be to hide the row or elements on mobile
– https://www.screencast.com/t/9jbTF9cfaniq
– https://www.screencast.com/t/UZbsPqVtzS
Or you could leave it like it is and I could give you a code to display the team members like this. First add a custom class to the row containing the team members
– https://www.screencast.com/t/Uy3tksy6Nb7
Then based on that class a code like this will display the members like this
– https://www.screencast.com/t/rBvRg2pCr
That could be a solution. If you decide to use it here is the code used in the example
.myclass.td-pb-row [class*="td-pb-span"] {
width: 49%!important;
float:left;
padding-left: 5px;
}
This code must be entered in Theme panel->Advanced CSS phones section.
Thanks
P.S.
I read that “Mobile Theme” comes with a single predefined page template that includes two section:
top grid – displays 3 featured posts (posts included in the Featured category)
latest articles – displays the latest articles”
Well, this would be fine for me, the problem is on mobile displays only latest articles, not top grid.
Hi Team,
As Adsense and some ad platforms have removed the limit on ads on pages, would you consider adding more ad placements for the mobile theme too? Now, there are only three inline ads we can use. Thank you.
Hi,
There seems to be a delay before the code loads. If you used a custom code to remove the header menu gradient tr entering that code directly in the theme stylesheet, at the end of the code. This should reduce or remove the issue entirely.
Regarding the mobile menu background, the current color set would be white from what I can see. This is set through the theme panel setting it seems. So there should be no problem changing the background color.
If you are choosing a different color and the result is not as intended, you can send us an email at contact@tagdiv.com and provide admin login information. We will take a look and try to identify why the background color is not applying properly. Also paste a link to this topic in the email.
Thanks
Hi,
Removing these elements by this method should not have an impact on SEO, they will still be loaded in the page source, but they will not be visible.
To remove the comment count in the author page author box, in both desktop and mobile
– https://www.screencast.com/t/UonRDOc6E
– https://www.screencast.com/t/xdSL2ZgLQ
.author .td-author-counters span:last-child {
display:none;
}
Enter the code in both Theme panel->Custom CSS code, and Theme panel->Mobile theme->Custom CSS section. The code will remove the comment counts in these situations.
Thanks
I have this same issue after update to 8.5.1 – search bar just below menu on desktop and on mobile ( not td mobile theme ) it is on the opposite side, the same side as the hamburger for the menu – instead of one icon on each side. Cleared all host caches and Cloudflare cache.
Thanks
Hi,
Great theme!
I got one question:
I use module 12 and my post excerpts are showing on computer, but in mobile view i can see only headline.
So is there any way to show post excerpts also in mobile view?
Example like this: http://bit.ly/2od9iy9
(that is differend theme, but if you look it with mobile you can see excerpts)