CHT10

Enable Caching for Logged-in Users

Enabling this option allows caching of pages for users who are logged in. This can help improve performance for logged-in users by reducing the time it takes to generate pages dynamically. However, it’s important to ensure that the caching setup properly handles personalized content to avoid displaying incorrect or outdated information to users. […]

Read More…

Exclude file extensions from cdn

During the implementation of the CDN, our plugin provides a section to exclude the specific extensions so that the functionality of site is not hampered, for instance, excluding ‘Font Extensions’ like (.woff, .ttf, .eot, .woff2) might be required because cross origin request for fonts are not allowed in many sites and allowing of fonts from […]

Read More…

Export Settings

To export your settings, copy the code provided on the W3Speedster Plugin’s export page and save it in a file. This allows you to back up your configuration or transfer it to another site, ensuring that your settings can be easily restored or applied in the future. […]

Read More…

Uninstalling W3Speedster

Remove the Package Reference Open the composer.json File: Locate the require section in the composer.json file and remove the entry for the w3speedster/w3speedster package. “require”: { “w3speedster/w3speedster”: “1.0.0”, … } Delete the above line, ensuring the JSON remains valid. Remove the Repository Entry: If the repositories section contains an entry for the w3speedster/w3speedster package, remove […]

Read More…

W3speedster Before Start Optimization

Function: w3SpeedsterBeforeStartOptimization Description: W3Speedster allows you to make changes to the HTML on your site before actually starting the optimization. For instance replace or add in html. Parameter: $html = $html – full html of the page. Return: 1 – Reflect the changes done in html of the page. function w3SpeedsterBeforeStartOptimization($html){ $html = str_replace(array(“”),array(“”), $html); […]

Read More…

Uninstalling W3Speedster

Identify the Extension First, confirm that the W3Speedster extension is installed by checking the Magento extension list: php bin/magento module:status Look for an entry like W3Speedster_W3Speedster (or similar). This confirms the extension is installed and enabled. Disable the Extension To prepare for uninstallation, disable the extension: php bin/magento module:disable W3Speedster_W3Speedster Replace W3Speedster_W3Speedster with the actual […]

Read More…

Delete JS/CSS Cache

The plugin lets you delete the combined and minified cache for JavaScript and CSS. This ensures that any changes made to your theme or plugin files are updated and reflected on your site. […]

Read More…

Lazyload Javascript

This option allows you to choose when to load JavaScript on your site. Enabling lazy loading for JavaScript can improve your site’s initial loading speed by deferring the loading of JavaScript files until they are needed. Select “Yes” to enable lazy loading, or “No” to load JavaScript files immediately with the rest of your site’s […]

Read More…

Turn On Optimization

When you turn on this field, the W3Speedster Plugin will optimize your site by applying all the optimization settings. If this settings is turned off, no settings in w3speedster plugin will apply except html caching. […]

Read More…