Title: CSS performance improvement
Last modified: January 16, 2025

---

# CSS performance improvement

 *  Resolved [Antony Booker](https://wordpress.org/support/users/antonynz/)
 * (@antonynz)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/css-performance-improvement/)
 * Thanks for this plugin.
 * I noticed the redux-custom-fonts CSS file in [wp-content/uploads/redux/custom-fonts/fonts.css?ver=1736987826](https://www.wardrobesonline.co.nz/wp-content/uploads/redux/custom-fonts/fonts.css?ver=1736987826)
   is being redownloaded by the browser on each page view due the version number
   changing every second (as it’s based off time).
   Would it be possible to apply
   the patch below to the redux-core/inc/extensions/custom_fonts/class-redux-extension-
   custom-fonts.php file to improve the front-end performance for that request:Replacing:
 *     ```wp-block-code
       wp_enqueue_style(	'redux-custom-fonts',	$this->upload_url . 'fonts.css',	array(),	time());
       ```
   
 * with:
 *     ```wp-block-code
       wp_enqueue_style(	'redux-custom-fonts',	$this->upload_url . 'fonts.css',	array(),	filemtime( $this->upload_dir . 'fonts.css' ));
       ```
   
    -  This topic was modified 1 year, 4 months ago by [Antony Booker](https://wordpress.org/support/users/antonynz/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Kev Provance](https://wordpress.org/support/users/kprovance/)
 * (@kprovance)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/css-performance-improvement/#post-18248155)
 * I would think so. The guy who write this close to a decade ago had some reason
   for this design and for the life of me, I cannot remember what it was. I’ll do
   some testing with it.
 * I moved this to our issue tracker: [https://github.com/reduxframework/redux-framework/issues/4052](https://github.com/reduxframework/redux-framework/issues/4052)

Viewing 1 replies (of 1 total)

The topic ‘CSS performance improvement’ is closed to new replies.

 * ![](https://ps.w.org/redux-framework/assets/icon.svg?rev=2889347)
 * [Redux Framework](https://wordpress.org/plugins/redux-framework/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/redux-framework/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/redux-framework/)
 * [Active Topics](https://wordpress.org/support/plugin/redux-framework/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/redux-framework/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/redux-framework/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Kev Provance](https://wordpress.org/support/users/kprovance/)
 * Last activity: [1 year, 4 months ago](https://wordpress.org/support/topic/css-performance-improvement/#post-18248155)
 * Status: resolved