- 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
- NewsmagRequirements for Newsmag
- NewsmagHow to update the theme
- NewsmagtagDiv Social Counter tutorial
- NewsmagTop bar templates
- NewsmagAjax view count
- TutorialsWhat is Ajax preloading?
- NewspaperVideo Playlist
- Newspaper7 Days Post Sorting
- NewspaperAjax View Count
- NewspaperTop bar templates
You may need to also update your cache on your website, not just in your browser.
Hi,
We haven’t tested that plugin with the theme so we are not aware of the results using it. W3 total cache could cause various issues if not configured well so you’ll have to find the right configuration for it. Glad it works now!
Thanks for the message!
-
This reply was modified 11 years by
Lucian.
HI Alin!
I have cleared the cache as well as browsing history of my browsers… on chrome and mozilla it’s not working but on safari it does.
I feel some where in the site code their is any error or issue. because i installed some plugin which were only supposed to work on responsive layout only (Sticky Social Sharing Button) but it was showing up in the desktop view of the site as well. I tried the same plugin on another site of mine it was working perfectly as it was supposed to work.
I am not a pro programmer but I fell their is something wrong with the responsiveness of the site.
If you want I can pass you the credentials so that you can look into the codes.
Thanks!
Hi,
I am using this plugin http://scott.yang.id.au/pages/permalink-redirect.html
can you please let me know if it is working fine at there or not?
Note: It was not working perfectly when the W3 Total Cache plugin – Page cache option was in Disk Enhanced mode. But when I have changed it to Disk: Basic, it is working fine.
Thanks & Regards
Debarup
Hi,
Once again when the smart snap mobile is active the main menu remain fixed on desktop screens(when you scroll up or down) and on mobile appears only when you scroll up. We check your site many times and it is working properly, please clear cache.
1. Please try this custom css to hide “to top” button: http://screencast.com/t/TIfAu6B4kt8
.td-scroll-up-visible {
display: none !important;
}
2. Also for h5 you can change the font size using media queries: http://screencast.com/t/Zzrwvc46gj
@media (max-width: 767px){
.td-post-text-content h5{
font-size: 20px;
}
}
Thanks!
Hi,
Please check this only with Visual Composer and Seo by Yoast active(disable all other plugins) also clear cache and check the screen options when you edit a page it should be displayed – http://screencast.com/t/kr9jcYTm
Let me know!
Thanks!
Hi,
Please try to set load more button to appear after 2 pages and see if it works, also clear cache if you are using a cache plugin. Let me know!
Thanks!
Some suggestions
a) don’t use child theme, as it’s a redirect
b) ensure you have caching running on server like opcache, etc.
c) be sure to use normal WP optimizations (as per my own optimization sticky) — enough memory allocated to php, and upgrade default RAM for WP in wp-config.php -etc.
d) limit queries on post pages — meaning, avoid “most popular 7 days” kinds of things, try one query of “latest 5 stories” vs having three sidebar queries of 3 latest posts from 3 categories; try not using mega-menu to query dbase for story elements .. limit queries in footer
e) remove CSS over-rides in theme panel, move to style.css
f) consider using things like mod_pagespeed and or mod_SPDY if you serve all pages via https
g) turn off image thumbnail sizes you don’t actually use; plan layouts to limit total number of sizes for thumbs to no more than 5 or 3 if really going for speed
h) check server response time — which has nothing to do with theme and needs server to be optimized (our pages respond in 0.31 secs on avg., regardless of theme with only minor optimizations)
And of course look at some of the theme docs for suggestions from TagDiv on speed/performance.
Food for thought 🙂
-
This reply was modified 11 years by
simchris.
Hello!
We’ve purchased Newspaper 4 theme, but there is a small hiccup. After a year of operation site has become unbearably slow on relatively powerful hardware and with relatively modest load (70 concurrent users).
We have accumulated about 5 thousand articles most of which are in a single category, though we are using tags (which causes another funny side effect – thousands of cache update operations through terms_cache almost on each request).
Nevertheless, I have to give you a baseline. We’ve changed hardware over time in search of performance, so to be totally syre, we set up an empty virtual box (4GB TAM, 2 core CPU, 60GB SSD on DigitalOcean), simple LAMP server, a copy of our site and even then we were unable to get pageloads under a second (though all other plugins were enabled).
Next move was obvious and as follows (ensuring nothing beyond content, Newspaper theme and Visual Composer is present within installation):
a) Set up a new WordPress instance.
b) Populate content from production site (use wp-cli to update all links).
c) Add default Newspaper 4 theme and its default child theme, select latter as site theme.
d) Install visual composer (as recommended by theme).
d) Enable everything and set a few things up, so menus and category pages are as in production.
As a result all pages are being generated in approx. 1 second (1.09±0.13s; out of 100 measurements; page generation time), which is obviously not good enough, since under even moderate load and because of other plugins which are essential to site this time tends to grow.
What are your recommendations to gain significant performance improvements? Of course, enabling w3 total cache solves this problem for unauthenticated users, but we heavily rely on authenticated ones, so an advice would help.
This is my htaccess code
=================================================
# ———————————————————————-
# CORS-enabled images (@crossorigin)
# ———————————————————————-
# Send CORS headers if browsers request them; enabled by default for images.
# developer.mozilla.org/en/CORS_Enabled_Image
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
# mod_headers, y u no match by Content-Type?!
<FilesMatch “\.(gif|png|jpe?g|svg|svgz|ico|webp)$”>
SetEnvIf Origin “:” IS_CORS
Header set Access-Control-Allow-Origin “*” env=IS_CORS
</FilesMatch>
</IfModule>
</IfModule>
# ———————————————————————-
# Webfont access
# ———————————————————————-
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like “subdomain.example.com”.
<IfModule mod_headers.c>
<FilesMatch “\.(ttf|ttc|otf|eot|woff?|font.css|css)$”>
Header set Access-Control-Allow-Origin “*”
</FilesMatch>
</IfModule>
RewriteEngine on
# BEGIN W3TC Browser Cache
<IfModule mod_mime.c>
AddType text/css .css
AddType text/x-component .htc
AddType application/x-javascript .js
AddType application/javascript .js2
AddType text/javascript .js3
AddType text/x-js .js4
AddType text/html .html .htm
AddType text/richtext .rtf .rtx
AddType image/svg+xml .svg .svgz
AddType text/plain .txt
AddType text/xsd .xsd
AddType text/xsl .xsl
AddType text/xml .xml
AddType video/asf .asf .asx .wax .wmv .wmx
AddType video/avi .avi
AddType image/bmp .bmp
AddType application/java .class
AddType video/divx .divx
AddType application/msword .doc .docx
AddType application/vnd.ms-fontobject .eot
AddType application/x-msdownload .exe
AddType image/gif .gif
AddType application/x-gzip .gz .gzip
AddType image/x-icon .ico
AddType image/jpeg .jpg .jpeg .jpe
AddType application/json .json
AddType application/vnd.ms-access .mdb
AddType audio/midi .mid .midi
AddType video/quicktime .mov .qt
AddType audio/mpeg .mp3 .m4a
AddType video/mp4 .mp4 .m4v
AddType video/mpeg .mpeg .mpg .mpe
AddType application/vnd.ms-project .mpp
AddType application/x-font-otf .otf
AddType application/vnd.ms-opentype .otf
AddType application/vnd.oasis.opendocument.database .odb
AddType application/vnd.oasis.opendocument.chart .odc
AddType application/vnd.oasis.opendocument.formula .odf
AddType application/vnd.oasis.opendocument.graphics .odg
AddType application/vnd.oasis.opendocument.presentation .odp
AddType application/vnd.oasis.opendocument.spreadsheet .ods
AddType application/vnd.oasis.opendocument.text .odt
AddType audio/ogg .ogg
AddType application/pdf .pdf
AddType image/png .png
AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx
AddType audio/x-realaudio .ra .ram
AddType application/x-shockwave-flash .swf
AddType application/x-tar .tar
AddType image/tiff .tif .tiff
AddType application/x-font-ttf .ttf .ttc
AddType application/vnd.ms-opentype .ttf .ttc
AddType audio/wav .wav
AddType audio/wma .wma
AddType application/vnd.ms-write .wri
AddType application/font-woff .woff
AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
AddType application/zip .zip
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css A31536000
ExpiresByType text/x-component A31536000
ExpiresByType application/x-javascript A31536000
ExpiresByType application/javascript A31536000
ExpiresByType text/javascript A31536000
ExpiresByType text/x-js A31536000
ExpiresByType text/html A3600
ExpiresByType text/richtext A3600
ExpiresByType image/svg+xml A3600
ExpiresByType text/plain A3600
ExpiresByType text/xsd A3600
ExpiresByType text/xsl A3600
ExpiresByType text/xml A3600
ExpiresByType video/asf A31536000
ExpiresByType video/avi A31536000
ExpiresByType image/bmp A31536000
ExpiresByType application/java A31536000
ExpiresByType video/divx A31536000
ExpiresByType application/msword A31536000
ExpiresByType application/vnd.ms-fontobject A31536000
ExpiresByType application/x-msdownload A31536000
ExpiresByType image/gif A31536000
ExpiresByType application/x-gzip A31536000
ExpiresByType image/x-icon A31536000
ExpiresByType image/jpeg A31536000
ExpiresByType application/json A31536000
ExpiresByType application/vnd.ms-access A31536000
ExpiresByType audio/midi A31536000
ExpiresByType video/quicktime A31536000
ExpiresByType audio/mpeg A31536000
ExpiresByType video/mp4 A31536000
ExpiresByType video/mpeg A31536000
ExpiresByType application/vnd.ms-project A31536000
ExpiresByType application/x-font-otf A31536000
ExpiresByType application/vnd.ms-opentype A31536000
ExpiresByType application/vnd.oasis.opendocument.database A31536000
ExpiresByType application/vnd.oasis.opendocument.chart A31536000
ExpiresByType application/vnd.oasis.opendocument.formula A31536000
ExpiresByType application/vnd.oasis.opendocument.graphics A31536000
ExpiresByType application/vnd.oasis.opendocument.presentation A31536000
ExpiresByType application/vnd.oasis.opendocument.spreadsheet A31536000
ExpiresByType application/vnd.oasis.opendocument.text A31536000
ExpiresByType audio/ogg A31536000
ExpiresByType application/pdf A31536000
ExpiresByType image/png A31536000
ExpiresByType application/vnd.ms-powerpoint A31536000
ExpiresByType audio/x-realaudio A31536000
ExpiresByType image/svg+xml A31536000
ExpiresByType application/x-shockwave-flash A31536000
ExpiresByType application/x-tar A31536000
ExpiresByType image/tiff A31536000
ExpiresByType application/x-font-ttf A31536000
ExpiresByType application/vnd.ms-opentype A31536000
ExpiresByType audio/wav A31536000
ExpiresByType audio/wma A31536000
ExpiresByType application/vnd.ms-write A31536000
ExpiresByType application/font-woff A31536000
ExpiresByType application/vnd.ms-excel A31536000
ExpiresByType application/zip A31536000
</IfModule>
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
<FilesMatch “\.(css|htc|less|js|js2|js3|js4|CSS|HTC|LESS|JS|JS2|JS3|JS4)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1”
</IfModule>
</FilesMatch>
<FilesMatch “\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|HTML|HTM|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|XML)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1”
</IfModule>
</FilesMatch>
<FilesMatch “\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|woff|xla|xls|xlsx|xlt|xlw|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|DOCX|EOT|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|JSON|MDB|MID|MIDI|MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|OTF|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA|RAM|SVG|SVGZ|SWF|TAR|TIF|TIFF|TTF|TTC|WAV|WMA|WRI|WOFF|XLA|XLS|XLSX|XLT|XLW|ZIP)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1″
</IfModule>
</FilesMatch>
# END W3TC Browser Cache
# BEGIN W3TC Page Cache core
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=W3TC_ENC:_gzip]
RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]
RewriteRule .* – [E=W3TC_PREVIEW:_preview]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =””
RewriteCond %{REQUEST_URI} \/$
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC]
RewriteCond “%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” -f
RewriteRule .* “/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” [L]
</IfModule>
# END W3TC Page Cache core
# 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
RewriteCond %{HTTP_HOST} ^topfivebuzz\.mayanz\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.topfivebuzz\.mayanz\.com$
RewriteRule ^/?$ “http\:\/\/www\.topfivebuzz\.com” [R=301,L]
Options -Indexes
====================================================
Hi,
Today i have found that all of my blog posts are opening with both
http://www.topfivebuzz.com/aspiring-model-with-down-syndrome-breaking-stereotypes-or-just-giving-in
http://www.topfivebuzz.com/aspiring-model-with-down-syndrome-breaking-stereotypes-or-just-giving-in/
how to redirect the without trailing slash to trailing slash
http://www.topfivebuzz.com/aspiring-model-with-down-syndrome-breaking-stereotypes-or-just-giving-in
301 redirect to
http://www.topfivebuzz.com/aspiring-model-with-down-syndrome-breaking-stereotypes-or-just-giving-in/
applicable for all url
Note: The without trailing slash urls are not cached and index by google though it is a duplicate issue, so I need to fix this.
Please please help me.
Hi,
I tried this:
– deactivating all plugins without Visual Composer – no results
– cleared the cache, even minification – no results
Maybe the problem can be caused by not being able to update the visual composer. I still have version 4.4.4. Always I deactivate, delete and reinstall as said in documentation the upload stops at a specific point and not ends. After a while I get information to update again. It’s weird.
I am newbie. So it confuses me.
Hi Guys.
I modified my .htaccess and since I did i can’t saw the images of the heads of the post. My web: http://www.publicidaenlanube.es
Please, i don’t know this problem for solution.
My .htaccess:
<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters collapse_whitespace
ModPagespeedEnableFilters remove_comments
ModPagespeedEnableFilters rewrite_images
ModPagespeedEnableFilters insert_dns_prefetch
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
AddType text/javascript .js
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-ttf .ttf
AddType application/x-font-opentype .otf
AddType application/x-font-woff .woff
# BEGIN Expire headers
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault “access plus 5 seconds”
ExpiresByType image/x-icon “access plus 2500000 seconds”
ExpiresByType image/jpeg “access plus 2500000 seconds”
ExpiresByType image/png “access plus 2500000 seconds”
ExpiresByType image/gif “access plus 2500000 seconds”
ExpiresByType application/x-shockwave-flash “access plus 2500000 seconds”
ExpiresByType text/css “access plus 700000 seconds”
ExpiresByType text/javascript “access plus 700000 seconds”
ExpiresByType application/javascript “access plus 700000 seconds”
ExpiresByType application/x-javascript “access plus 700000 seconds”
ExpiresByType text/html “access plus 600 seconds”
ExpiresByType application/xhtml+xml “access plus 600 seconds”
ExpiresByType font/truetype “access plus 2500000 seconds”
ExpiresByType font/opentype “access plus 2500000 seconds”
ExpiresByType application/x-font-woff “access plus 2500000 seconds”
ExpiresByType image/svg+xml “access plus 2500000 seconds”
ExpiresByType application/vnd.ms-fontobject “access plus 2500000 seconds”
</IfModule>
# END Expire headers
# 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>
# END Cache-Control Headers
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
<IfModule mod_alias.c>
RedirectMatch 403 /xmlrpc.php
</IfModule>
I need help for this problem.
Thanks
Hi,
Make sure that you alter the right post template as each post style has its own template: http://screencast.com/t/Nis08kL9JAS and empty all caches and also purge files if you sue CDN host.
Send your admin login details via email if you follow all this and still can’t manage to do it. (contact@tagdiv.com)
Thanks
Hi,
What theme version do you use? Please make sure that you use the latest version 4.6.3.
Also I have checked your site and not only mobile menu doesn’t work, also ajax pagination. I found these errors in the console – http://screencast.com/t/XImhK1sVFL so please make sure that you deactivate all plugins leave only Visual Composer active, also clear cache and purge your files if you use CDN and see if you still have this issue. Also please remove any js/css minification. Let me know!
Thanks!
Hey! I tried that code. I simply copied it and pasted it on the custom CSS field, flushed the caches too and checked in incognito mode. But there was no change, I tried it with your color code and the one which I wanted. Neither of them worked.
Here’s the link of what I did : http://www.screencast.com/t/d7g5t3lJNw
Hi,
@Sparton05
1. You can try this custom css in Theme Panel > Custom Css: http://screencast.com/t/jR1sfFPZpJ
.page .td-grid-wrap {
padding: 20px 0px 0px 0px;
}
Please provide your site url and also more details about this gap if this is not what you mean.
2. Try this custom css for slider z-index:
.rev_slider_wrapper {
z-index: 0 !important;
}
If this doesn’t work please provide your site url.
3. Please make sure that you create a megamenu properly – https://forum.tagdiv.com/how-to-use-the-megamenu/
When you set a category megamenu you don’t have to add submenu items. For parent category(with subcategories) set as megamenu all subcategories will appear automatically.
If you still have issues with it please provide a link so we can take a look.
@matthieuroubaix
Please check this without any plugins active, leave only Visual Composer active and also clear cache and purge your files if you use CDN. Also please make sure that you use the latest theme update (1.7.1 – you use Newsmag theme) and also update the plugins that come with the theme files from the /plugins folder. Use thsi guide if you need to update – https://forum.tagdiv.com/how-to-update-theme/ Let me know how it goes.
Also please post your issues in newsmag section – https://forum.tagdiv.com/forum/newsmag/
Thanks!
Hi at all,
I installed this theme on an existing small website (http://www.kesenangan.com). For most of my questions I find solutions after longer searching but there are still two problems:
1a. In my main menu both the home-symbol and the arrow symbols are not displayed. I already cleaned the cache but nothing happens.
1b. As I visit my website via my mobile the menu is not working at all. The menu symbol is given but without function.
2. The three boxes on the right are not styled correctly. The headlines are insert to the left (or the images to the right). I not use a custom stylesheet even it is not displayed in the editor.
Maybe someone has a hint or solution for at least one of this problems.
Thanks in advance!
thanks a lot, i forgot clean caches
1) choose header option without the banner
2) don’t put any ad banner element in the ad box for header
3) clear your caches
Solved, it was just a problem of old cache of the browser.
Hello,
Even after editing loop-single.php, i cannot move the review box in the post.
I’ve cleared my cache, but it still doesn’t move.
Is there anyway to edit the td-post-text-content class to move the review box up in the page?
Thanks!
If you’re using a CDN or some other external thing, you likely need to ensure that is setup properly and clear cache; make sure you actually have ‘featured’ images setup for all of those posts, etc.
Do the images actually exist on your site?
seems they do ?
http://dawgtime.com/wp-content/uploads/2015/03/3.31Practice18-100×75.jpg
I will say this — it’s really bad to have dots in file names … most systems need to identify the file extension after a . so some systems will stop at 3.whatisthisextension?
Ideally this should be
NO
3.31Practice18-100×75.jpg
YES
3-31Practice18-100×75.jpg
dumb as it sounds, but try changing the image file names?
———-
or wait for tagdiv support …. I’m just a bystander ….. 🙂
Hi,
These js errors usually are caused by plugins that conflict with theme javascript. Please make sure that you have disable all plugins when you check this and also clear cache.
If still have this issue please send an email at contact@tagdiv.com and provide wp-access so we can take a look, also paste a link to this conversation so we can know who you are. We will answer to this soon as possible.
Thanks!
Hi,
Please make sure that you also try this without using additional plugins, leave just theme’s Visual Composer and Social Counter plugin’s active (make sure you also empty all caches) and the W3 Total Cache plugin using just page cache: https://forum.tagdiv.com/w3-total-cache-configuration/ then test again.
If you still get the same behavior when you update a post please let us know and provide your admin login details at contact@tagdiv.com so we can have a closer look at this. Please also include a link to this tread in your message and let us know how if goes.
Thanks