No search results were found in Documentation!
Solved was a cache issue
Hello ztk,
I have inspected your source page and I saw that your HTML structure for your main menu is missing for your tacticaltalk.net, as you can see here -> https://www.screencast.com/t/9l9IC4xOl4I This issue might come from a bad theme installation. I recommend you to make a full back-up to your database and then try to make a new clean install from scratch via FTP way because this is the surest method in this regard. Clear all the caches and check the results. Also, ensure that you have selected your main menu items from panel, according to our documentation here -> https://forum.tagdiv.com/main-menu/
Hope this helps!
Thanks for your understanding!
I have been trying to set this theme up all day and for the past hour, the composer has decided to play silly buggers.
When I click ‘edit with composer’ I get the loading screen and nothing happens. I have tried clearing my cache, restarting but no joy.
Not a great first impression of this theme.
I’ve tried to remove the mobile style.css from the speedbooster, but it doesn’t work. The custom css that Amit has proposed to remove it works great. But its a momentaneous solution that works until you will change the file.
So, is it possible to remove it forever? I’m asking this because that effect is bad for who have a slow internet connection, the reason is that when you are loading an article you can’t see the content (text) until the css is completely loaded or the animation ends.
Right now I’m trying to delete all the Newspaper files and upload them again to see if something changes.
Update: After that i’ve uploaded again all the files of Newspaper theme the problem is still there. I’ve also deleted my custom css in both sides, desktop and mobile, and removed my personalizzation from mobile theme colors but nothing changed. My child style.css is empty and i don’t have applied any customization to the originals css files. I’m not using a cache plugin and i’ve deactivated all the unnecessary plugins to see if there’s some of them that interfer with the theme’s functions. After that i removed my custom body css class to see if was that to cause the problem, but again the issue was still there.
Maybe in the demo you customized something that block this damned animation?
-
This reply was modified 9 years by
Fenix. Reason: Update
No caching plugin detected – for best performance we recommend using WP Super Cache
WP Super Cache -Instaled
Hello,
It seems some of your images have been forced to show in a size of 1 x 1 px. That is why they do not show up. Please disable all plugins except the page builder, clear cache and reset cdn files if you use it.
Then test your images again.
Thanks.
Hi,
It could be a plugin conflict though.
Please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
If the issue is still present after disabling plugins and clearing all caching, then please contact us via email at contact@tagdiv.com and provide wp-admin so we can login and investigate.
Thank you!
both inline and top ads are being displayed.
the bottom ad is still not displayed. Is the only ad I have problem.
I already cleared cache
Not really theme related. You probably need to contact your hosting provider, as those settings are based on your server, and local site and nothing to do with WordPress or the TagDiv theme. Ideally, they should be able to tell you the correct settings.
Also note you cannot control time to live for browser caching of images hosted elsewhere, such as loaded off FB, ad networks, content loaded from another site, etc. Cache control headers will only help with locally hosted content on your server alone.
(( I don’t work here. ))
-
This reply was modified 9 years by
simchris.
Hi, we have a dedicated server, and dont have a server side cache.
Any other suggest?
I tried expiry headers from my host https://www.siteground.com/kb/leverage-browser-caching/
but the same problem still exists. Also, I did delete the cache.
Here is the content of my .htaccess
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTPS} !on [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^mysite.com [NC]
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R=301,L]
#disable hotlinking of images with forbidden or custom image option
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?mysite.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?google.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ – [NC,F,L]
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg “access 1 year”
ExpiresByType image/jpeg “access 1 year”
ExpiresByType image/gif “access 1 year”
ExpiresByType image/png “access 1 year”
ExpiresByType text/css “access 1 month”
ExpiresByType application/pdf “access 1 month”
ExpiresByType application/javascript “access 1 month”
ExpiresByType application/x-javascript “access 1 month”
ExpiresByType application/x-shockwave-flash “access 1 month”
ExpiresByType image/x-icon “access 1 year”
ExpiresDefault “access 2 days”
</IfModule>
## EXPIRES CACHING ##
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
AddHandler application/x-httpd-php70 .php .php5 .php4 .php3
RewriteEngine on
RewriteBase /
RewriteRule ^naturopathic/(.*) https://www.mysite.com/naturopathy/$1 [R=301,L]
RewriteRule ^physical-therapist/(.*) https://www.mysite.com/physical-therapy/$1 [R=301,L]
RewriteEngine on
Redirect 301 /physical-therapist https://www.mysite.com/physical-therapy
Redirect 301 /naturopathic https://www.mysite.com/naturopathy
Already did it several times in WP Super Cache.
Kindly purge all the site cache and try.
you are compatibile with WP Fastest Cache? Is a Premium Plugin cache.
Use following code instead:
# BEGIN Caching
<ifModule mod_headers.c>
<filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
<filesMatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</filesMatch>
<filesMatch "\\.(js)$">
Header set Cache-Control "max-age=216000, private"
</filesMatch>
<filesMatch "\\.(xml|txt)$">
Header set Cache-Control "max-age=216000, public, must-revalidate"
</filesMatch>
<filesMatch "\\.(html|htm|php)$">
Header set Cache-Control "max-age=1, private, must-revalidate"
</filesMatch>
</ifModule>
# END Caching
Hello @BigHead_s
If you are using CloudFlare, make sure you have set Browser Cache Expiration to minimum 8 days.
Hi,
Recently I installed the Newspaper theme and configured it for a blog with around 100 articles.
I use WP Super Cache with the settings you recommend in the tutorial: https://forum.tagdiv.com/cache-plugin-install-and-configure/
The page speed which really poor – Mobile 17, Desktop 21!
When I use the W3 Total Cache the results are little better – Mobile 47, Desktop – 52.
Also when I try to disable the WP Super Cache plugin it gives me Server error and doesn’t want to disable fully!?
The site is: blog.hotel-extreme.bg
Hi,
First off, please make sure the FORMAT is enabled in the screen options: https://www.screencast.com/t/Op0H6SXmMyb
If this is not the case, we have seen plugins disable theme options before so please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Then check for the option again.
Thank you!
Hi,
There could be a plugin conflicting with the theme.
Please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Then test the indexing again.
Thank you!
Hello planetcappe,
You will never get this problem if the theme will be right installed. I have made some tests on my side with a new fresh install and this problem does not exist. Please try to make a new clean install via FTP way because this is the surest method in this regard, clear all the caches and check the results.
Thanks for the message!
Hello,
Please contact your hosting and have them remove any hosting side cache. We recommend using wp super cache only. Hosts these days tend to provide caching solutions from the host side because of the large amount of users that simply do not use caching on their sites and that kills a server very quickly. So these measures were taken and caching was provided for everybody on specific hosts. Please make sure you do not have this type of caching.
Thank you!
Hello,
If you did not change anything, then nothing should have happened, but people tend to leave automatic updates on so your plugins most likely got updated since then and a plugin update caused the issues. Nothing happens all of a sudden without anything changing. Please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hi guys,
After hammering around on this for a few hours, I was able to fix the issue but wanted to leave a comment for the benefit of others who might have the same issue down the track.
First, I completely uninstalled the WP Rocket cache plugin. I then wiped it clean from my hosting account and database (see this article here: http://docs.wp-rocket.me/article/694-uninstalling-wp-rocket). I got a fresh download of the latest version, installed it, and then activated each option one by one, and checking to see if the site was rendering correctly (note, clear the cache each time before checking).
Anyway, at long last, it made a difference and I’m back up and running again (despite the fact it wasted half my day).
Hope this helps someone else.
Cheers
Hi,
I activated the tagdiv mobile theme and its was working well, but when I activated the WP super cache plugin Im getting the full site on mobile device.
I followed the settings you recommend for WP super cache, but keeps the same problem.
Here is my site http://www.guatefutbol.com/nw/
Please help
I can use this plugin but can’t use that plugin. Changed the background and showed fine on explorer and chrome but firefox still hasn’t changed. Cleared my cache, cleared firefox cache, restarted my computer, restarted firefox but still showing the old, not the new. Asked how to bring my posts etc. to a new demo but got some answer that was unclear to me, a person who is unfamiliar with this theme. I need a step by step instructions for dummies. After I install a new demo with content, how do I change the content to my own. Please explain to me as a newbie, not as one of the developers of the theme. Thank You.