- 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
Hello #nowsathkwt
be sure you do this
1) https://forum.tagdiv.com/how-to-make-the-site-faster/
page cache, speed booster plugin beta
2) add the elements to htaccess file for expires headers, caching, etc.
3) make sure your server had gzip/deflate compression
4) install image optimize plugin, or change default compression in functions.php, re-render your images for compression
5) run speed test at GTmetrix (etc.); fix suggestions
Your site
http://gtmetrix.com/reports/connectkuwait.com/j8vmwWPR
note issues
* you don’t have expires headers on your site content; you need to add those to your htaccess file per my recommendations in this topic thread
* need to optimize images further
* you won’t be able to fix the stuff you’re loading off other sites like the .me.uk domain which is responsible for many of your “rating errors” — you’re loading images, CSS, JS and such from many other sites, and these all slow down your site and don’t meet the current optimization standards.
I’m experiencing the same issue on my site at DC Nation in the 2nd row, Trending Articles. The most popular of that block of 3 posts is showing a count of 234 views since the theme was installed.
However, this post Clinton-Dix Scouting Report shows more than 700 views on the counter since the theme was installed and yet it does not show up in the Trending Articles row.
There are many other posts like that which do not show on the Trending Articles row. Use of the “last 7 days” sorting is enabled for that row and the theme and I am running no caching plugins (I deleted the default cache plugin for WordPress). I also do not filter that block by category or author, only by “last 7 days” popularity.
Same issue as OP. Thanks for checking into it.
Hello,
I want my site to be as fast as the demo site, but it isn’t although I installed w3 total cache just with “page cache enabled” and also activated the “tagDiv speed booster”. With these plugins my site’s scores are 72/100 for mobile and 86/100 for desktop.
What else should I do to make my site as fast as the demo site?
Disabled the Quick Cache plugin, deleted all of its files and pasted the code you posted in custom CSS. Still nothing changes:/
Popuplar (7 days) doesn’t work for me too, since from beginning. I’m using W3 Total Cache but pages are not caching for me (I set this).
I disabled W3 and nothing happened.
Hi,
Do you use some Cache plugin like W3 total cache?,if yes please disable it because cause to stop the view counter.(page cached)
Thanks!
After so much trial my website achivede the perfection.Its scored 100 in Pingdom,GTMATIX and Google Page Speed.Thanks Tagdiv team.
http://tools.pingdom.com/fpt/#!/pzZqn/www.mavcure.com
http://gtmetrix.com/reports/www.mavcure.com/F3yJNbue
http://developers.google.com/speed/pagespeed/insights/?url=www.mavcure.com
But there is wrroe coming saying cache
Cache directory is not writable: /home/curepaty/public_html/wp-content/uploads/spacker-cache/
-
This reply was modified 12 years by
nihar105479.
Please helpme. I am going crazy soon. I make about 3-4 posts every day but it seems that the dont reach the web instantly – both mobiles, tablets and desktos. It can take hours…
I have tried disabling plugins, empty cache, inactivate slider and more and so on… and I still have problems. I have other sites with other themes that works perfect.
Problem solved. Thank you Stefan. It took a while to get rid of the cache!
Still not working in incognito or with a cleared cache. Basically its showing half of a home looking icon and something else but both hard to make out. Please take a look at (android-advice(dot)com) to see what I mean.
Thank you
Hi,
Do you use some cache plugins like W3 total cache or similar, because this affect the counter.
The view counts on the posts never will be reset. You can see here what value have to track it somehow http://screencast.com/t/Q8PdJItONWzy
@Radu that worked perfectly with the JS š
However after i upgraded to 3.1 today it seems the addthis css file is back in header. Did you change anything? Have I done everything correctly?
It’s just the css from addthis that wont move now.
<link rel='stylesheet' id='output-css' href='http://creactivateno.wpengine.netdna-cdn.com/wp-content/plugins/addthis/css/output.css?ver=3.8.1' type='text/css' media='all' />
Now I realize i’m using a CDN but I’ve purged the cache multiple times so it shouldn’t be the problem.
<?php
/*
Plugin Name: tagDiv speed booster
Plugin URI: http://tagdiv.com
Description: Speed booster for Newspaper theme
Author: tagDiv
Version: 2.1
Author URI: http://tagdiv.com
*/
class td_speed_booster {
var $load_contact_form_7 = '';
var $load_google_fonts = '';
var $styles_for_footer = array();
function __construct() {
add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts_hook'), 100);
add_action('wp_footer', array($this, 'wp_footer_hook'), 15);
add_action('wp_head', array($this, 'wp_head_hook'), 15);
define('TD_SPEED_BOOSTER' , 'v2.0');
}
function enqueue_scripts_hook() {
$this->move_js_to_footer('bitly-js');
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"), true, '1.10.2', true);
wp_enqueue_script('jquery');
}
//move styles
$this->move_style_to_footer('output-css');
$this->move_style_to_footer('bbp-default-bbpress'); //bpress old
$this->move_style_to_footer('bbp-default'); //bpress
$this->move_style_to_footer('contact-form-7');
$this->move_style_to_footer('td-bootstrap');
$this->move_style_to_footer('td-theme');
$this->move_style_to_footer('google-font-rest');
$this->move_style_to_footer('woocommerce_frontend_styles');
//bbpress
//remove_action( 'bbp_head', array($BBP_Default, 'head_scripts') );
}
function wp_footer_hook() {
foreach ($this->styles_for_footer as $style_id => $style_src) {
echo "<link rel='stylesheet' id='" . $style_id . "-css' href='" . $style_src . "' type='text/css' media='all' />\n";
}
}
function wp_head_hook() {
echo '<style>body {visibility:hidden;}</style>';
}
function move_style_to_footer($style_id) {
global $wp_styles;
if (!empty($wp_styles->registered[$style_id]) and !empty($wp_styles->registered[$style_id]->src)) {
$this->styles_for_footer[$style_id] = $wp_styles->registered[$style_id]->src;
wp_deregister_style($style_id);
}
}
function move_js_to_footer($js_id) {
global $wp_scripts;
wp_enqueue_script($js_id, ($wp_scripts->registered[$js_id]->src), '', $wp_scripts->registered[$js_id]->ver, true);
}
}
new td_speed_booster();
?>
Sorry. Solved. I think it was a W3 cache issue
Cleared History, Cache and so on in my iPhone. Still having problem
Hi,
We have changed the sprite file, please try in icognito, or clear the cache to take the new sprite file.
Thanks!
Hi,
1. We added icons for menu items with <img src="link to icon" /> directly in menu editor, no plugin needed.
2. about SEO we recommend SEO by Yoast plugin.
3. W3 Total Cache only with Page Cache enable
4. We don’t use any security plugin, you can try something from plugins available free or paid.
5. For buttons we have shortcode generator that you can easy add buttons in post http://demo.tagdiv.com/newspaper/buttons/
Also for speed we have a dedicated plugin tagDiv Speed Booster.
Thanks for the message!
Hi Guys,
Nice themework:)
Before filling our website with content we are now selecting the 3rd party plugins to extend the features of worpress.
To omit unnecessary problems and questions, we were wonder if you could tell us in advance what your (or the newspaper theme’s compatible) preferred 3rd party plugins are?
Type of plugins that we would like to add:
– Adding more different icons to the main menu (no plugin selected/found yet)
– Simplified youtube video integration (author side and if usefull also public side)
– SEO (thinking about wordpress jetpack)
– Speed accelerator (we are currently trying W3C total cache)
– Security enhancement (currently evaluating wordfence security)
– Adding and managing easily collored buttons to highlight text or urls in posts.
Thanks again for the good work!
Cheers, C.
No i don’t use mod_pagespeed, i’m using WP Super Cache with mod_rewrite and the activated CDN option (i’m using maxCDN for cdn) in that plugin.
In addition Thanks for stars š
hi,
can you give us your link?
do you have any plugins installed other that the ones we recommend :Contact form 7, Animated Gif Resize, Jetpack and Revolution slider, bbPress, tagDiv Social Counter, W3 Total Cache without javascript minifier ??
if you do, disable them, just for the test.
how about on other browsers?, same behavior?
Thanks for you message.
Radu A.
⢠Remove this line from Wp-config file (define(āWP_CACHEā, true) )
⢠Check .htaccess file and if you see any code added by w3 remove it
It is usually inserted in a # section above the #wordpress section
The htaccess file is what is used to manage permalinks, and special instructions to the web server.
Usually at
/root/.htaccss
hidden by default; you will need to either set your ftp to filter view and show hidden files; or use the file editor in your hosting panel.
So, there might be a section
# W3CACHE stuff #
blah blah blah
# END #3 CACHE #
(delete the above in .htaccess file …)
Don’t delete .htaccess file completely as that is how the permalinks are able to work.
Good idea to learn to set FTP software to make that visible so you can backup when you do site backups.
Read more: http://www.shoutmeloud.com/how-to-delete-uninstall-w3-total-cache-wordpress-plugin.html#ixzz2sJKE3Fpq
Under Creative Commons License: Attribution No Derivatives
Mehedi
you would, via FTP, or hosting/file manager, delete the folder created by W3 cache which has all the cached content in it. (See W3 help for what folders are created; they should be pretty obvious if you look at your site via FTP on regular basis.) e.g.
wp-content/cache
Replace files … simply re-upload all your theme files if you think they were over-written.
As far as I know, W3 doesn’t “change” the theme folders, only serves cached copies. So, in theory, you should not actually need to replace the files in
/wp-content/themes/Newsapaper/
HOWEVER … one item which W3 cache doesn’t fix on deactivation, is cleaning up all the folders it creates in /cache/ and it doesn’t remove the cache “on” line which you would have added in your
/root/wp-config.php
and/or .htaccess file
UPSHOT: if you’re still seeing “cached” copies of content (old versions); you need to disable the caching completely
1) turn off plugin AFTER you clear cache in the plugin
2) delete the /cache/ folder contents wherever it made them
3) check your .htaccess file to remove any “directives” put there by W3 cache
4) check your functions.php file to change cache to “off”
And this presumes you’re making backup copies of everything !
If you’re new to WP, the wonderful repository for wordpress plugins is found at:
http://wordpress.org/plugins/
WP super cache is here
http://wordpress.org/plugins/wp-super-cache/
AS EVER: make backups of all your files; images, folders; make backup of dbase from your host/phpmyadmin; make backup of data files from wp admin > tools > export.
TEST anything before committing to it. If something doesn’t work, go back to the one that works from your backups.
Caching apps are tricky to use, and should generally be used ONLY by advanced users.
Hi
Can you please tell me which files and folders i need to delete? And what do you mean by replace orginal ca and js files from install copies?
Give me the link to total cache by automattic to..
Thanks!
Clear the cache.
Delete cache folder.
Replace original css/js files from your install copies.
Clear your browser cache completely.
Hit refresh 2-3 times, close/open browser, or whatever works with your particular browser.
Should work.
I had lots of trouble with W3 cache; not using it. Will be looking at Total Cache since it’s made by WordPress/Automattic. But no other advice from over in these parts.
go to the w3 Total Cache settings and turn off minify for js and css and it should revert back to the way it was.
Hello
I have mistakenly minified JS and also CSS by using W3 Total Cache. For that the theme’s slider is not swappable and the login doesn’t popup! O am pretty sure that it caused for minifying.
Does anyone knows how to make it like before. Will it help, if I delete all the W3 file and upload the theme again?
Thanks in advance!