Function: W3SpeedsterExternalJavascriptFilter Description: If you want to dynamically exclude a JavaScript file or inline script from optimization, W3Speedster allows you to exclude it from optimization (like revslider). Parameter: $exclude_js – 0(default) || 1 $script_obj – Script in object format. $script – Content of the JS file you want to make changes in.$html – content of […]
Doc Category: Symfony
W3speedster External Javascript Customize
Function: W3SpeedsterExternalJavascriptCustomize Description: If you want to make changes in your external JavaScript tags, W3Speedster allows you to make changes in external JavaScript tags. Parameter: $script_obj – Script in object format. $script – Content of the JS file you want to make changes in Return: $script_obj – Make changes in Js files from an external […]
W3speedster Customize Force Lazyload Css
Function: w3SpeedsterCustomizeForceLazyCss. Description: If you wish to Force Lazyload CSS files dynamically for a specific page or pages, you can do so with the W3Speedster, it allows you to dynamically force lazyload stylesheet files (for instance font file like awesome, dashicons and css files). Parameter: $force_lazyload_css – Array containing text to force lazyload which you […]
W3speedster Exclude CSS Filter
Function: W3SpeedsterExcludeCssFilter Description: If you want to dynamically exclude a CSS file from optimization, W3Speedster allows you to exclude it from optimization (like style.css). Parameter: $exclude_css – 0(default) || 1 $css_obj – link tag in object format. $css – Content of the CSS file you want to make changes in. $html – content of the […]
W3speedster Prevent Htaccess Generation
Function: w3SpeedsterPreventHtaccessGeneration. Description: Our plugin converts .jpg/.png format to WebP format without changing the URL. it disable webp to render from HTACCESS. Parameter: $preventHtaccess = 0(default) || 1 Return: 1 – It will add w3.webp at the end of the url for instance (xyz.jpgw3.webp). function w3SpeedsterPreventHtaccessGeneration($preventHtaccess){ $preventHtaccess = 1; return $preventHtaccess; } function w3SpeedsterPreventHtaccessGeneration($preventHtaccess){ $preventHtaccess […]
W3speedster Customize Image
Function: w3SpeedsterCustomizeImage Description: Customize image tags. Parameter: $img = Image tag with all attributes $imgnn = Modified image tag by plugin $imgnn_arr = Image tag attributes array Return: $imgnn- Customized image tags function w3SpeedsterCustomizeImage($imgnn,$img,$imgnn_arr){ if(strpos($imgnn,’alt’) != false){ $imgnn = str_replace(‘alt=””‘,’alt=”value”‘,$imgnn); } return $imgnn; } function w3SpeedsterCustomizeImage($imgnn,$img,$imgnn_arr){ if(strpos($imgnn,’alt’) != false){ $imgnn = str_replace(‘alt=””‘,’alt=”value”‘,$imgnn); } return $imgnn; […]
W3speedster Exclude Image To Lazyload
Function: w3SpeedsterExcludeImageToLazyload Description: W3Speedster allows you to exclude the images from optimization dynamically which you don’t want to lazyload. Parameter: $exclude_image = 0(default) || 1 $img = Image tag with all attributes $imgnn_arr = Image tag Return: 1 – it will lazy load the image. 0 – it will not lazy load the image. function […]
W3speedster Change Iframe To Iframlazy
Function: w3SpeedsterIframetoIframelazy Description: Change iframe tag to iframlazy tag. Parameter: $iframelazy- 0(default) || 1 Return: 1 – Change iframe tag to iframlazy tag. function w3SpeedsterIframetoIframelazy($iframelazy){ $iframelazy = 1; return $iframelazy; } function w3SpeedsterIframetoIframelazy($iframelazy){ $iframelazy = 1; return $iframelazy; } […]
W3speedster Change Video To Videolazy
Function: w3SpeedsterVideoToVideoLazy Description: Change video tag to videolazy tag Parameter: $videolazy- 0(default) || 1 Return: 1 – Change video tag to videolazy tag. function w3SpeedsterVideoToVideoLazy($videolazy){ $videolazy= 1; return $videolazy; } function w3SpeedsterVideoToVideoLazy($videolazy){ $videolazy= 1; return $videolazy; } […]
W3speedster Seprate Critical Css For Category
Function: W3speedsterCriticalCssOfCategory Description: W3Speedster Create seprate critical css for categories pages. Parameter: $separate_cat_css- Array of Category. Return: $separate_cat_css – create separate critical css for each category and tag. function W3speedsterCriticalCssOfCategory($separate_cat_css){ $separate_cat_css = array(‘category’,’tag’,’custom-category’); return $separate_cat_css; } function W3speedsterCriticalCssOfCategory($separate_cat_css){ $separate_cat_css = array(‘category’,’tag’,’custom-category’); return $separate_cat_css; } […]