No search results were found in Documentation!
Hello sprasadb4u,
There are a number of things you can do to speed things up.
Please check this guide to set the leverage cache and optimize images – https://forum.tagdiv.com/how-to-make-the-site-faster/ also Christopher’s topic may help – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/
Thank you.
Thx.
But i think i need use speed booster, due to pages will load faster.
Hi,
my hosting service invites me to test php7 with performance and speed much faster than the current …
have you any suggestions on that?
Newspaper theme is ready and compatible to php7?
Thanks
I got it. The child was disabled. Simple like that. Sorry. But now keeping the child active mess with the menus and sidebars. I have to redo all of them or is there a faster way to recover it?
Thanks!
Hi,
Please check this guide set leverage cache, optimize images – https://forum.tagdiv.com/how-to-make-the-site-faster/
The speed booster move the js and css at the bottom of the page to Eliminate render-blocking, but not for all plugins. You need to modify the plugin(speed booster) if you want to work with other plugins.
Also try to not use many plugins, activate only the plugins that you need.
The Christopher’s topic also may help – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].
Hi
You’re right about post grids functionality, it loads all article and display the hidden ones when you click on load more button, but google does not penalizing your site because of this implementation.
I’ve checked your site with https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.almosthuman.cn%2F&tab=desktop and notice that you don’t have set the leverage browser caching also the images aren’t optimized. Please check our page speed guide here: https://forum.tagdiv.com/how-to-make-the-site-faster/ and try to increase your page speed following that instruction. Also if you decide to use the Speed Booster plugin here are some useful information about his functionality: https://forum.tagdiv.com/topic/speed-booster-v4-1-disabled/
Let me know how it goes and provide more details if you still need assistance on this.
Thanks!
Hi,
Please check this guide to set the leverage cache and optimize images – https://forum.tagdiv.com/how-to-make-the-site-faster/ also the Christopher topic may help – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/
Thanks!
Hi,
Please fix the gzip compression(there’s usually an option in the cpanel area) and image compresion, check this guide – https://forum.tagdiv.com/how-to-make-the-site-faster/ – http://screencast.com/t/QEpPX8uebzOJ
After you do this please send an email at contact@tagdiv.com and provide wp-admin access so we can take a look.
Thanks!
That’s called lazy load. The pictures are supposed to show up delayed like that so the content can load faster. Search the forums if you want to disable it in Newspaper; there’s a code tutorial lying around somewhere. Theme panel only includes controls for the annimation effects under Theme Panel > Template Settings
Hi
sorry for double posts from themeforest to here but it looks like support forum get faster supports so~
could you check
1. why http://i.imgur.com/YTuOtmQ.jpg have 2 login place? we want wordpress one gone.
2. you mentioned that “create the registration and activity pages and assign them from buddypress’s settings page section” , how to create registration and activity pages? I know where to add pages, but put what inside? link to your ajax login page ?
thanks!
Ai
Hi,
1. I’m not sure what you mean – http://screencast.com/t/2yMI0sz5GhB You can provide a link so I can take a look.
2. I have checked this on my side and no blue background appears – http://screencast.com/t/bq58rmhs Do you use speed booster plugin? It may cause an issue like this because it moves the css and js at the bottom of the page structure so that the page will load faster, this is why the theme default color appears first then changes, because of the cascading property of css. A solution is to change the color directly into css stylesheet file.
3. Replace your code with this custom css – http://screencast.com/t/qCFe4hxeU4t
.sf-menu .td-normal-menu li:hover > a {
padding-left: 20px;
background-color: none;
border-left: 2px solid #0072bc;
transition: padding .3s ease-in-out;
border-left: 2px solid #0072bc;
}
4. The submenu doesn’t have a fixed width, it count the length of the items – http://screencast.com/t/gMQ6eFVzos A solution will be to add a min-width, but also you need to change the position – http://screencast.com/t/s81lAXTd
The icon has an absolute position you can also adjust it if you want – http://screencast.com/t/Xtfm2KEXj
5. This is the thumb size used by template 3. Like you can see it is used on more templates and also on smart lists. You can add a new thumb size in td_config.php – http://screencast.com/t/AY145YSX and the use it for template 3 – http://screencast.com/t/eWWuLpdAP Please regenerate your thumbs if you make some changes – https://forum.tagdiv.com/using-the-theme-with-existing-content/
Thanks!
I know what I might do is just a framework and make my own theme, and maybe I will sell it but not on here. Since I think about customers and choosing this way is thinking about money more than it is about customers. It is getting to be all about money and this is going to cause the end of the world a lot faster this way. Not trying to start a fight here but I am moving on. Consider this a lost customer.
I’m going help you a lil but you have to learn to do these things ur self…
First you need to Defer parsing of JavaScript there is a plugin that can do that for you called>>> “Async Javascript” in the settings you will choose the defer opition you can find the plugin here >> https://wordpress.org/plugins/async-javascript/ i’m using it as well and it do a great job with out issues…
To Optimize ur images this plugin can do it for you..EWWW Image Optimizer find it here >>>https://wordpress.org/plugins/ewww-image-optimizer/
You need to enable GZIP Compression on your sever
That cache plugin “Super Cache” is rubbish..i recommend you use ZenCache you can find it here>> https://wordpress.org/plugins/zencache/ it will cache ur site better and make it faster…
To help you with other issues like “Leverage browser caching” put this code in the bottom of ur .htaccess file
# 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
Hello,
I have newspaper theme v6.2 installed on my website.
URL : http://www.naukrinama.com
Google Page Speed URL : https://developers.google.com/speed/pagespeed/insights/?url=naukrinama.com
It shows a lot of JS and CSS errors. With the steps mentioned on this URL : https://forum.tagdiv.com/how-to-make-the-site-faster/
I took out the ID’s of the various JS and CSS files and have created the code lines. But i am confused where to add then in the speed booster plugin php file.
I can already see similar code for that ID added there. Should i replace it or what ?
Having the code inline actually loads faster than external file as it’s cached with the page and reduces wait time for external file to load before the page to allow it to render.
Hi
Regarding the page speed issues please check our guide here: https://forum.tagdiv.com/how-to-make-the-site-faster/ – follow this section: http://screencast.com/t/bQMIXc5JuUdd to optimize images and also make sure you regenerate thumbnails: https://forum.tagdiv.com/existing-content/
Check your panel status for the speed booster plugin and make sure it’s active: http://screencast.com/t/a2BBchudPE as it’s set to disable itself if detects an incompatible plugin. I see you use lots of plugins so you should consider that recent versions of the tagdiv speed booster plugin have been designed to disable when it detect incompatible plugins. You can read more in this regard here: https://forum.tagdiv.com/topic/incompatibility-speed-booster/
If you’re not aware of the steps you need to take to improve your page speed score we advise your to hire a freelancer to help you do it because we cannot provide speed customization services at the moment.
The theme uses the WordPress thumbs cropping system and depending on image’s aspect ratio the result could be different, you can find more details here: https://forum.tagdiv.com/image-size/ and more details about cropping here: http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/
There is not an ideal image size for all thumbs, and a way to find what image will fit best would be to do some tests depending what blocks/modules you use most add an image more nearest with aspect ratio of the thumbs in which you want it to look well. You can read more about aspect ratio here – http://digital-photography-school.com/aspect-ratio-what-it-is-and-why-it-matters/
Theme’s page speed guide provides our demo site .htaccess configuration: http://screencast.com/t/SMP1Jebjx which you can use as a starting point and build on it.
You can also go trough Chris’s recommendation on this regard: https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
Thanks!
Buna ziua,
Trimite te rog un email la contact@tagdiv.com si o sa-ti dau o versiune mai veche. Daca se poate sa-mi trimiti si error.log-ul , consumul de resurse poate fi cauzat de altceva.
Am verificat site-ul pe pagespeed si imaginile nu sunt comprimate – http://screencast.com/t/jNPjIQnWy2D- incearca solutia prezentata in documentatie – http://screencast.com/t/gKIEpAky – https://forum.tagdiv.com/how-to-make-the-site-faster/
Problema apare si pe celalalt site dar e mai mic impactul – http://screencast.com/t/4J4xA0SPBT
Multumesc!
Hi,
@deelauaki This can be caused by Speed Booster plugin(if you use it) which move the css and js at the bottom of the page structure so that the page will load faster, this is why the theme default color appears first then changes, because of the cascading property of css. A solution is to change the color directly into css stylesheet file – http://screencast.com/t/hbjKLA3pjKA – http://screencast.com/t/YLOcOHterf
Thanks!
After hard work now I am online at
http://www.panorama.com.al/
but my website is slow.
1-I have dedicated server
2-I have chache (WP Super chache)
3- I use your plugin speed booster
4- I have cloudflare
and my website is slow.
I have problems with I plugin also
It is named TOP 10 and now I have disabled it but I need to use it.
Please let me know how to make website faster, and
how to resolve the top 10 plugin issuee.
Thank you in advance!
Most of the questions have been answered however u still have this to answer
1) How to select editors pick for the footer
2) I have an existing videos with its links showing at first with a different video theme but since i transfer to ur theme all the link disappear and base on the information that i have received from u so far its going to take me long time to add the video links again one by one given the fact that i have over 250 videos on the site. My question is how to make the process faster so I can use the previous links so i dont have to add it one by one to save time?
I can’t seem to solve or make progress on my Newspaper Theme performance issues.
I’ve got five friends that want to use Newspaper, too, if only I can get past my performance issues.
(They’re new bloggers, they like the idea of the theme, they’re a bit worried about my inability to fix my performance issues, or to find someone who can.)
My performance sucks (in the 40’s) with no clear remedy in sight.
Worse, when users hit my site the first time, the page loads blank (no images show)
If they reload the home page, then images show the second time, but after a flash of gray.
Here are screen shots:
* Empty Images – http://www.awesomescreenshot.com/image/509260/1ae034f2ac380576a5dd1d8e49faed92
* On Reload – http://www.awesomescreenshot.com/image/509262/dd0893dd0a1944de6aab6f0a9591e297
I haven’t seen anybody else’s site load like mine, where it’s all framed out with gray placeholders, and then, as if a second flash, the images then show up.
Here’s my setup at a glance:
* I’m hosting on Siteground.
* I use WP Rocket which is tested with Siteground — just default options.
* I’m using a CDN (Cloudflare), with default options.
* I have Gzip working.
* I use WP Smush Pro to smush all images (all images are smushed.)
* I used P3 (Plugin Performance Profiler) to analyze plugin performance.
I contemplated W3 cache (well, In installed it, but it was immediate conflict with WP Rocket, and WP Rocket’s feature compare shows superior in all regards, but I don’t have enough experience yet to know of it’s true.)
I get Chris’s point on the difference between buying a car, and driving the car. Well, now I want to know how to drive like the Mario Andretti. I feel like I’ve got the “owner’s Guide”, but not the “Driver’s Guide”. But actually, I don’t want yet another guide, I want a student driver model where I pay a consultant to show me the ropes for a couple of hours while fixing things, looking over my shoulder, or me looking over theirs.)
My images are probably the main problem, I don’t know how to fix them without doing weird acts of God, and I’m trying to keep posting simple and pragmatic, not build a better mouse trap with weird optimizations and even weirder workflow.
Tutorial
—————-
I’ve seen these tutorials …
* Page Speed Tutorial – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/
* How to make the site faster – https://forum.tagdiv.com/how-to-make-the-site-faster/
* Better Explained – How Compression Works – http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/
* Google on Image Optimization – https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/image-optimization
Posts
—————
I’ve seen these posts:
* Pagespeed – https://forum.tagdiv.com/topic/pagespeed/
* What is your google page speed value – https://forum.tagdiv.com/topic/what-is-your-googlespeed-value/
Tips
——————–
I’ve seen these tips:
* Chris S – Additionally, I use the WP-Optimize plugin to regularly optimize my WP dbase. Cutting 800kb out of your dbase once a week, or after a large number of posts/pages, also speeds up your system overhead. https://forum.tagdiv.com/topic/what-is-your-googlespeed-value/
* Chris S – If you can hit 90+ on your desktop score and 85+ on mobile, you can live a happy life and not stress over it. https://forum.tagdiv.com/topic/what-is-your-googlespeed-value/
* Chris S – – There are numerous resources on the net to learn how to set-up your web server account for gzip, expiration headers, optimize your images prior to uploading to your site, editing your htaccess file for WordPress, limiting use of resource hogging plugins unless absolutely necessary, etc., using W3cache with the minimal settings recommended in this forum from Radu/Marius (( QUOTE: w3 total cache use only the ‘full page cache.’ )) – https://forum.tagdiv.com/topic/pagespeed/
* Radu – On the demo we are running a stock theme with our stock speed booster plugin! Also note that any additional plugins slow the theme down and lower the score in pagespeed. – https://forum.tagdiv.com/topic/what-is-your-googlespeed-value/
Tools
————
I’ve used these tools
* Google Page Speed – https://developers.google.com/speed/pagespeed/insights/
* GTMerix – https://gtmetrix.com/analyze.html
* Is compression working? http://www.gidnetwork.com/tools/gzip-test.php
* Pingdom Tools – reality test – http://tools.pingdom.com/fpt/#!/bGth8K/sourcesofinsight.com
* Web Page Test – http://www.webpagetest.org/
Google tells me my page speed sucks. Is Compression Working tells me Gzip is working. Pingdom tells me my images are bloated. GTMetrix fails with a 522 timeout and blames my CDN.
The quote that keeps me going is:
“Whatever doesn’t kill you makes you stronger.”
I guess I’m getting stronger day by day.
JD
Hi,
I was optimizing my website:
https://forum.tagdiv.com/how-to-make-the-site-faster/
Did a pagespeed test:
Got 3 blocking CSS resources:
http://fonts.googleapis.com/…s?family=Open+Sans%3A400%2C700&ver=4.2.4
http://www.windowsmechanic.com/…ser/assets/css/js_composer.css?ver=4.6.2
http://www.windowsmechanic.com/…ent/themes/Newspaper/style.css?ver=6.3.2
http://www.windowsmechanic.com/…ser/assets/css/js_composer.css?ver=4.6.2
http://fonts.googleapis.com/…00,400italic,700,500italic,400?ver=6.3.2
Also following JS:
http://ajax.googleapis.com/…s/jquery/1.11.1/jquery.min.js?ver=1.11.1
http://www.windowsmechanic.com/…wspaper/js/tagdiv_theme.min.js?ver=6.3.2
So I added the code in functions.php to get the list of registered css and js. Here is the result
registered scripts:
td-site-min | http://www.windowsmechanic.com/wp-content/themes/Newspaper/js/tagdiv_theme.min.js
jquery | http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
registered styles:
google_font_roboto |
google-fonts-style | http://fonts.googleapis.com/css?family=Open+Sans:400,700
js_composer_front | http://www.windowsmechanic.com/wp-content/plugins/js_composer/assets/css/js_composer.css
td-theme | http://www.windowsmechanic.com/wp-content/themes/Newspaper/style.css
So I decided to edit the plugin (td-speed-booster/td-speed-booster.php) and added following code:
$this->move_style_to_footer(‘google-fonts-style’);
$this->move_style_to_footer(‘js_composer_front’);
$this->move_style_to_footer(‘td-theme’);
The moment I add this, page speed says that they get 500 error code and website never loads. I added at following location.
if ($this->is_ie === false) {
// move style.css theme style
$this->move_style_to_footer(‘google-fonts-style’);
$this->move_style_to_footer(‘js_composer_front’);
$this->move_style_to_footer(‘td-theme’); // $this->move_style_to_footer_queue(‘td-theme’); //this is the main style of the theme. It’s only moved on Newspaper 6!
}
I suspect that I may be adding in wrong place.. I am yet to move the js to footer. Am stuck with css.
Can you tell me what I am doing wrong please. Any kind feedback is highly appreciated.
Thank you.
Hi,
Please check this guide and set Leverage Browser Caching – https://forum.tagdiv.com/how-to-make-the-site-faster/
Also try to use only plugins that you need. The speed booster move the js and css at the bottom of the page to Eliminate render-blocking, but not for all plugins. It is tested only with some plugins – http://screencast.com/t/e84eU4HmJ and it will be disable if you use other plugins, please check System Status – http://screencast.com/t/r9yEtFSpSxuc
Thanks!