my site with current theme is slow

Posted in: Newspaper
Post count: 25

My site is slow. With the previous theme gtmetrix and google page speed returning values over 80%. With current theme (Which is most beautiful certainly) parameters is a 40-45%.

you can help me?
I’m installed a Speed Booster But Does not improve.(guide https://forum.tagdiv.com/how-to-make-the-site-faster/)

How do I see if she read my .txt file?
I think it’s not working.
i generate file and called optimize.txt. I upload into directory of plugin.
i insert into td-speed-booster.php this code:

$this->move_js_to_footer(‘optimize.txt’);
$this->move_style_to_footer_queue(‘optimize.txt’);

OR

$this->move_js_to_footer(‘optimize’);
$this->move_style_to_footer_queue(‘optimize’);

but not it works

Post count: 623
Post count: 25

Do I have to use CDN?

Post count: 25

$this->move_js_to_footer(‘optimize.txt’);
$this->move_style_to_footer_queue(‘optimize.txt’);

OR

$this->move_js_to_footer(‘optimize’);
$this->move_style_to_footer_queue(‘optimize’);

in current directory plugins/td-speed-booster

Post count: 623

It’s not compulsory but using CDN will definitely speed up your site.

Post count: 25

How do i know if td-speed-booster is working or not?

Post count: 623

You have to use file-ID to move css or js

For JS files – $this->move_js_to_footer(‘FILE-ID’);
For CSS files –$this->move_style_to_footer_queue(‘FILE-ID’);

To get File-ID add following code on theme’s functions.php file

function td_inspect_scripts() { global $wp_scripts, $wp_styles; echo 'registered scripts<br>'; foreach ($wp_scripts->queue as $handle) { echo $handle . ' | ' . $wp_scripts->registered[$handle]->src . '<br>'; } echo 'registered styles<br>'; foreach ($wp_styles->queue as $handle) { echo $handle . ' | ' . $wp_styles->registered[$handle]->src . '<br>'; } } add_action( 'wp_print_scripts', 'td_inspect_scripts' );

Refer: 5.2 To get the list of registered css and js https://forum.tagdiv.com/how-to-make-the-site-faster/

Post count: 623

You can find Speedbooster plugin’s status here:

Post count: 25

you are compatibile with WP Fastest Cache? Is a Premium Plugin cache.

Post count: 623

You can find list of tested plugins under the Newspaper >> Plugins on the LHS Navigation

Refer:

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.