CHT10

Preload Caching

Preload caching involves generating and storing cached versions of your pages or resources before they are requested by users. This proactive approach ensures that cached content is available and served quickly when users access your site, improving page load times and overall performance. Preloading can be scheduled or triggered based on specific criteria, helping to […]

Read More…

Exclude pages from HTML caching

Excluding specific pages from HTML caching ensures that these pages are always fetched directly from the server rather than from a cache. This approach is particularly useful for pages with dynamic content that changes frequently, user-specific pages, and sections of your site that must always display the most current data. […]

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…

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…

Exclude Pages From Optimization

To exclude specific pages from optimization, simply enter their URLs in the designated section. For example, you can list pages like /cart or /login that you do not wish to optimize. This ensures that these pages are left out of the optimization process while the rest of your site benefits from performance improvements. […]

Read More…

Load Style Tag in Head to Avoid CLS

This feature allows style tags to load in the head section, fixing the Cumulative Layout Shift (CLS) of the page. To use it, simply add the ID of each style tag in the provided box and save your changes. Ensure that each style tag ID is entered on a new line. […]

Read More…

Enable Iframe lazy Load

With the W3Speedster Plugin, you can also enable lazy loading for iframes. By delaying the loading of iframes until they are needed, your site can load faster, offering a smoother and more efficient user experience. […]

Read More…

Preload Page Caching Per Minute

This feature allows you to automatically generate and update cached versions of your pages at regular intervals, such as every minute. By preloading page caching at these intervals, you ensure that the cached content remains fresh and up-to-date, providing users with the most current version of your site while maintaining fast load times. This approach […]

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…