CHT10

Loading secondary CSS

Loading secondary CSS after page load prioritizes critical content, speeding up initial rendering. Loading it on page load ensures all styles are immediately available, enhancing the user experience. […]

Read More…

Delay google fonts by

Delaying Google Fonts improves initial page load speed by reducing render-blocking requests, enhancing perceived performance and user experience, especially on slower connections. […]

Read More…

Cache Path

The cache of the W3Speedster Plugin is automatically generated inside the cache folder of the WP Content Folder and if you wish to change the path you can change it by putting the full path in this section. […]

Read More…

W3speedster Customize Add Settings

Function: w3SpeedsterCustomizeAddSettings Description: If you wish to change in variables and paths (URL), W3Speedster allows you to make changes in variables and paths with the help of this plugin function. Parameter: $add_settings- settings of the plugin. Return: :$add_settings – reflect the changes made in variable and path. function w3SpeedsterCustomizeAddSettings($add_settings){ $add_settings = str_replace(array(“mob.css”),array(“mobile.css”), $add_settings); return $add_settings; […]

Read More…

W3speedster Customize Critical Css

Function: w3SpeedsterCustomizeCriticalCss Description: If you wish to make any changes in Critical CSS, W3Speedster allows you to make changes in generated Critical CSS. For instance if you want to replace/ remove any string/URL from critical CSS (like @font-face { font-family:”Courgette”; to @font-face { ) Parameter: $critical_css- Critical Css of the page. Return: $critical_css – Reflect […]

Read More…

W3speedster No Critical Css

Function: w3SpeedsterNoCriticalCss Description: W3Speedster allows you to exclude the pages from the Critical CSS (like search pages). Parameter: $url- Stores the url of the page.$ignore_critical_css- 0 (default) || 1 Return: 1 – it will exclude the page you do not wish to create critical CSS. function w3SpeedsterNoCriticalCss($url, $ignore_critical_css){ if(strpos($url,’/path/’) !==false) { $ignore_critical_css = 1; } […]

Read More…

W3speedster Internal Css Minify

Function: W3speedup_internal_css_minify Description: If you don’t want to minify, W3Speedster allows you to exclude stylesheet files from minify. Parameter: $path- path of css file.$css- Css content of the file.$css_minify- 0 || 1 (default) Return: 1 – it will exclude the entered css file from minification.0 – it will not exclude the entered css file from […]

Read More…