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 […]
Archives: W3Speedster Docs
Documentation for W3Speedster
Minify HTML
Enabling HTML minification reduces the size of your HTML files by removing unnecessary characters, such as whitespace, comments, and line breaks, without affecting the functionality or appearance of the content. This results in faster page load times and improved site performance by decreasing the amount of data that needs to be transferred between the server […]
Unistalling W3Speedster
1. Restore Original Images Navigate to the Image Optimization tab inside the W3Speedster panel. Click the “Restore Original” button. This action reverts all optimized images back to their original versions in your current project directory. 2. Disable All Active W3Speedster Settings Open the W3Speedster Admin Panel via: ?admin=1&page=w3_speedster Manually disable key optimization modules: HTML Caching […]
CDN Settings
[…]
Force Lazy Load Link Tag CSS
Feature: The “Force Lazy Load Link Tag CSS” feature in W3Speedster enables developers to intentionally defer the loading of non-critical CSS files such as icon libraries and font stylesheets (e.g., fontawesome.css, icons.css). These CSS files are typically large and not required immediately during the initial page render, making them prime candidates for lazy loading to […]
W3speedster Inner JS Exclude
Function: w3SpeedsterInnerJsExclude Description: Exclude the script tag from lazy loading, which is present in the pages view source. Parameter: $inner_js = The script tag s content is visible in the page s view source $exclude_js_bool = 0(default) || 1 Return: 1 function w3SpeedsterInnerJsExclude($exclude_js_bool,$inner_js){ if(strpos($inner_js,’Script text’) !== false){ $exclude_js_bool= 1; } return $exclude_js_bool; } function w3SpeedsterInnerJsExclude($exclude_js_bool,$inner_js){ […]
Unistalling W3Speedster
W3Speedster can be uninstalled in two ways: Through the WordPress admin dashboard (recommended) Manually via FTP or your host’s File Manager Uninstall via WordPress Admin (Recommended) Go to Plugins > Installed Plugins in your WordPress admin panel. Locate W3Speedster and click on Deactivate. Once deactivated, click Delete. Note: W3Speedster will automatically clean up the following […]
Uninstalling W3Speedster
Disable the bundle: Remove the bundle from root directory of your project. Remove the added files: Remove the W3speedster/EventListener folder from the src folder within the project root directory. Comment on the config: Remove or comment on the config line added while installing in services.yaml file from the project_root_directory/config folder Test application: Verify that your […]
Uninstalling W3Speedster
1. Restore Original Images Navigate to the Image Optimization tab inside the W3Speedster panel. Click the “Restore Original” button. This action reverts all optimized images back to their original versions in your current project directory. 2. Disable All Active W3Speedster Settings Open the W3Speedster Admin Panel via: ?admin=1&page=w3_speedster Manually disable key optimization modules: HTML Caching […]
Uninstalling W3Speedster
Removing W3Speedster from a CorePHP project involves deleting its core files, unregistering any include statements, and optionally clearing optimizations made by the plugin. This ensures that the application reverts to its original unoptimized state without any dependency on W3Speedster. 1. Backup Your Project (Optional but Recommended) Before making any changes, it’s good practice to back […]