- NewspaperHow to use the Flex Blocks cache option
- NewspaperCache plugin – install and configure
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperFlex Block Settings Guide
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperThe Newspaper Mobile Theme: Introduction
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperHow to update a plugin
- NewspaperCloudflare (CDN)
- NewspaperFacebook Share
- NewspaperVideo Playlist
- Newspaper7 Days Post Sorting
- NewspaperAjax View Count
- NewspaperTop bar templates
- NewspaperHow to Update the Newspaper Theme
- NewspaperHow to Install Newspaper via FTP
- NewspaperHow to Install Newspaper via WordPress
- NewspaperRequirements for Newspaper
- NewspaperHow to Make the Site Faster
Hi,
If I understand correctly you have set in theme panel to show only the top share buttons and in your website are showing both of theme ( top and bottom), this can be a plugin conflict, please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
This can be a plugin conflict, please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Please make sure that the tagDiv Composer is activate -> https://www.screencast.com/t/Y1iMuy1sIJ2
Please check our documentation for tagDiv Composer Tutorial -> https://forum.tagdiv.com/tagdiv-composer-tutorial-2/
Homepage – How to build and set it -> https://forum.tagdiv.com/newsmag-homepage-how-to-build-and-set-it/
Thank you!
Hello !
Please remove all of the untested plugins, clear all the caches, purge CDN files and check the results. Also, ensure that you are using the latest version of the theme installed via FTP way because this is the surest method in this case.
Thank you!
Hi,
This can be a plugin conflict, please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/newsmag-requirements-for-newsmag/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
And it’s gone.. I turned off Jetpack Image Cloud, purge the cache.. and turn on now, it’s ok
-
This reply was modified 7 years by
Ersoy B..
After installing the Newspaper theme I found my load times for the landing page were at least 24-seconds and went as high as 40-seconds. That’s just unacceptable. So, I did some digging online for .htaccess tricks to decrease load time. Now my landing page load time is 4-seconds or less. Target pages are 3-4 seconds, and back to the main landing page from another page is 2-3 seconds. I’d still like to shave off another second or two, but it’s a far cry better than what I had before.
Pasted here is the total code I put into my .htaccess file. The impact was immediate and I’m very pleased. I thought others might find this useful. See below.
Blessings,
Tom Terry
—–
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
<IfModule mod_deflate.c>
<filesMatch “\.(js|css|html|php)$”>
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
# BEGIN Expire headers
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault “access plus 5 seconds”
ExpiresByType image/x-icon “access plus 604800 seconds”
ExpiresByType image/jpeg “access plus 604800 seconds”
ExpiresByType image/png “access plus 604800 seconds”
ExpiresByType image/gif “access plus 604800 seconds”
ExpiresByType application/x-shockwave-flash “access plus 604800 seconds”
ExpiresByType text/css “access plus 604800 seconds”
ExpiresByType text/javascript “access plus 604800 seconds”
ExpiresByType application/javascript “access plus 604800 seconds”
ExpiresByType application/x-javascript “access plus 604800 seconds”
ExpiresByType application/x-font-woff “access plus 604800 seconds”
ExpiresByType application/x-font-svg “access plus 604800 seconds”
ExpiresByType image/svg+xml “access plus 604800 seconds”
</ifModule>
# END Expire headers
# TN START GZIP COMPRESSION
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# TN END GZIP COMPRESSION
# TN START DEFLATE COMPRESSION
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE “application/atom+xml” \
“application/javascript” \
“application/json” \
“application/ld+json” \
“application/manifest+json” \
“application/rdf+xml” \
“application/rss+xml” \
“application/schema+json” \
“application/vnd.geo+json” \
“application/vnd.ms-fontobject” \
“application/x-font” \
“application/x-font-opentype” \
“application/x-font-otf” \
“application/x-font-truetype” \
“application/x-font-ttf” \
“application/x-javascript” \
“application/x-web-app-manifest+json” \
“application/xhtml+xml” \
“application/xml” \
“font/eot” \
“font/otf” \
“font/ttf” \
“font/opentype” \
“image/bmp” \
“image/svg+xml” \
“image/vnd.microsoft.icon” \
“image/x-icon” \
“text/cache-manifest” \
“text/css” \
“text/html” \
“text/javascript” \
“text/plain” \
“text/vcard” \
“text/vnd.rim.location.xloc” \
“text/vtt” \
“text/x-component” \
“text/x-cross-domain-policy” \
“text/xml”
</IfModule>
# END DEFLATE COMPRESSION
# TN START ENABLE KEEP ALIVE
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
# TN END ENABLE KEEP ALIVE
# TN – START EXPIRES CACHING #
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css “access 1 month”
ExpiresByType text/html “access 1 month”
ExpiresByType image/gif “access 1 year”
ExpiresByType image/png “access 1 year”
ExpiresByType image/jpg “access 1 year”
ExpiresByType image/jpeg “access 1 year”
ExpiresByType image/x-icon “access 1 year”
ExpiresByType image/svg+xml “access plus 1 month”
ExpiresByType audio/ogg “access plus 1 year”
ExpiresByType video/mp4 “access plus 1 year”
ExpiresByType video/ogg “access plus 1 year”
ExpiresByType video/webm “access plus 1 year”
ExpiresByType application/atom+xml “access plus 1 hour”
ExpiresByType application/rss+xml “access plus 1 hour”
ExpiresByType application/pdf “access 1 month”
ExpiresByType application/javascript “access 1 month”
ExpiresByType text/x-javascript “access 1 month”
ExpiresByType text/x-component “access plus 1 month”
ExpiresByType application/x-shockwave-flash “access 1 month”
ExpiresByType font/opentype “access plus 1 month”
ExpiresByType application/vnd.ms-fontobject “access plus 1 month”
ExpiresByType application/x-font-ttf “access plus 1 month”
ExpiresByType application/font-woff “access plus 1 month”
ExpiresByType application/font-woff2 “access plus 1 month”
ExpiresDefault “access 1 month”
</IfModule>
# TN – END EXPIRES CACHING #
# TN – BEGIN Cache-Control Headers
<ifModule mod_headers.c>
<filesMatch “\.(ico|jpe?g|png|gif|swf)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(css)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(js)$”>
Header set Cache-Control “private”
</filesMatch>
<filesMatch “\.(x?html?|php)$”>
Header set Cache-Control “private, must-revalidate”
</filesMatch>
</ifModule>
# TN – END Cache-Control Headers
# TN – ENABLE MOD PAGESPEED START
# COMBINE CSS, COMPRESS IMAGES, REMOVE HTML WHITE SPACE AND COMMENTS
<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters rewrite_css,combine_css
ModPagespeedEnableFilters recompress_images
ModPagespeedEnableFilters convert_png_to_jpeg,convert_jpeg_to_webp
ModPagespeedEnableFilters collapse_whitespace,remove_comments
</IfModule>
# TN – ENABLE MOD PAGESPEED END
# END WordPress
Hi Calin,
Thanks for your return.
I checked and all the lights are green.
There is just the time to load the color from blue to red … 🙁
https://www.planetelille.com
All the plugins are on: Autoptimize, WP Super Cache, CDN and Gzip via the host.
You will find below the screens.


Thank you !
-
This reply was modified 7 years by
Flows59160.
Sometimes I also have the same problem (resolves to clear the cache through the plugin or cloudfare).
But I’m really worried if my readers have a poor browsing experience!
It’s good to know that this problem does not just happen to me.
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
This can be a plugin conflict, please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
The popular post sorting requires this option to be active in the theme panel
– https://forum.tagdiv.com/7-days-post-sorting/
Once you activate that setting the theme will start counting the views posts get. For this to happen the post views have to be active – http://prntscr.com/nli2rx
Posts should begin to appear in the block after doing this.
Also please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
The scroll up button disappear because is set this message over it -> https://www.screencast.com/t/V1IX38poM you can set this custom css in theme panel>Custom code> Custom css -> https://www.screencast.com/t/T2p6qHlM7IM
body .td-scroll-up {
bottom: 55px;
}
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
Please check our documentation for Logo & Favicon in Newspaper Theme -> https://forum.tagdiv.com/logo-favicon/
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hello !
We managed to find a quick fix. Upgrade the timeout field to 1000 and delete the cache. If the problem still persists or you don’t manage to do it please send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email and provide as many details you can about the problem. https://www.screencast.com/t/fCGUcP55y
Thank you !
Hello Guys
We created a custom post type by modifying one of the preset templated in the cloud library. Now we want to set this template for all pages so we went to
Theme panel> post settings>Default site post template
There we could see the new template that we created and selected it. This was done for all the languages that we have (We are using WPML)
This works for a while but then when we switch languages then the post template in the theme panel reverts to the default.
WE also tried changing the template in the post options, this works for some time but then the template reverts to the default template.
This has us really stuck as we cannot design anything! The theme panel is the latest. We clear the cache and the system settings are default.
Tried disabling plugins but still this happens. We are anyway using all recommended plugins.
Please let us know what is missing
Regards
Ashutosh
Hi,
So the problem is happening only in Firefox? Because I checked with it, all the images seem to load fine for me – http://prntscr.com/nmqrx1 I refreshed the page multiple times.
I use this version of Firefox – http://prntscr.com/nmqttg
Maybe try and clear the cache of the browser and check again. Or check in a different computer if possible.
Thanks
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
If you are using Cloudflare (CDN) please make sure that is set like in our documentation -> https://forum.tagdiv.com/cloudflare-cdn/
Thank you!
Hi,
I will make some deep investigation for this problem, but first please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
Hi,
I made some test with the inline ads on post pagination
-> https://www.screencast.com/t/UyyQy90GMSP
-> https://www.screencast.com/t/L6CRSlo5Mb
-> https://www.screencast.com/t/g8B9jbIsR
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Let us know how it goes!
Thank you!
Hi,
Please check in theme panel>Header >Logo for mobile -> https://www.screencast.com/t/6v5nudxO set there your logo for mobile this should replace our logo, also please make sure that you clear all cache after you make the changes in theme panel.
Thank you!
Hi,
I made some test using the child theme ( without optimizations ), I install the Demo theme : Classic Blog and the option from theme panel for top bar is working correctly for me.
Please make sure that you set the last version of child, also please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Let us know how it goes!
Thank you!
Bonjour,
Je constate depuis quelques jours un ralentissement du chargement des CSS.
En effet, lors de l’ouverture du site : https://www.planetelille.com/
Le CSS initial (bleu) s’affiche 1 à 2 secondes et le nouveau CSS (codes couleurs du site apparaît).
Theme version i 9.7
Theme database version i 9.7
HTTP channel test wordpress
Theme Mobile Newspaper mobile version
WP Memory Limit 128 MB/request
WP_DEBUG False
Caching plugin WP super cache – for best performance please check the plugin configuration guide here.
Hello !
Please clear all cache and also purge CDN. If you do no know how to do it check this link:https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/
Thank you !
Hello !
Have you tried deleting the cache ? We do recommend WP Super Cache -https://tagdiv.com/wp-super-cache-plugin-install-and-configure/. If you’ve done this and the problem still persists try de-activating all non-theme related plugins reclear the cache.
Thank you !
Hi,
Please make sure that you are using the child theme from the package, activate the child theme and clear all cache.
-> https://www.screencast.com/t/SkcjyR0cOz
-> https://www.screencast.com/t/MkJLowyOz
Thank you!