Skip Navigation

[Resolved] Toolset make my website load slow

This support ticket is created 6 years, 4 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Our next available supporter will start replying to tickets in about 0.76 hours from now. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 6 replies, has 2 voices.

Last updated by Luo Yang 6 years, 4 months ago.

Assisted by: Luo Yang.

Author
Posts
#601837

I made a website speed test, and the result as the screenshot display of "Leverage browser caching", how can I fixed the problem to make my website more faster.

What is the link to your site? hidden link

#601839

And also you can see some jpg jpeg files that might have related of the toolset plugin. These picture is the font page first 9 item's image and the header image, I use the view on font page, adn use "Pagination enabled with manual transition and AJAX", setting display 9 items, and the result show in the test is exactly those 9 image.

#601932

Dear Ning,

I tried the URL (hidden link) you mentioned above in my chrome browser, the load time is 6.49 S, compare it with another page of your website, which does not have any view in it, for example:
hidden link
the load time is 5.87 S, and above page loads the admin-ajax.php URL lots of time too, can you confirm it?

So there isn't much different between them, how much load time do you want to achieve?

And since you are using 20+ plugins and a custom theme, in case it is a problem from other plugin/theme, please try this:
deactivate other plugins and switch to wordpress default theme, and test again

#601934
Screen Shot 2017-12-28 at 5.19.36 PM.png

I forgot to upload the image, I'am wondering what's that toolset file mean, it seems make my website slow.

#602106

For those CSS file, they contains our custom icons and stylings for Toolsets .

You should be able to dequeue it on frontend using wp_dequeue_style using some custom code:
https://codex.wordpress.org/Function_Reference/wp_dequeue_style
hidden link

For example:

add_action('wp_enqueue_scripts', function() {
  wp_dequeue_style('toolset-notifications');
  wp_dequeue_style('onthego-buttons');
  wp_dequeue_style('onthegosystems-icons');
  wp_dequeue_style('onthego-colors');
  wp_dequeue_style('onthego-styles-helper');
  wp_dequeue_style('onthego-admin-styles');
   
}, 20);
#602516

Sorry, I read the article you send above, but still don't know which file where place to add those code.

#602524

You can put above PHP codes into your theme/functions.php, and test again.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.