Recently Browsing 0
- No registered users viewing this page.
Similar Content
Latest Updated Files
-
KingX Pro - Gojek Clone v2024 (Backend, Frontend and All Apps)
- 0 Purchases
- 0 Comments
-
Bill Pay - Topup, Recharge And Utility Bill Payment Mobile App
- 1 Downloads
- 0 Comments
-
BillPay - Topup, Recharge and Utility Bill Payment Solution
- 1 Downloads
- 0 Comments
-
TableTrack - The Complete SaaS Restaurant Management Solution
- 1 Downloads
- 0 Comments
-
WorkDo Dash SaaS - Open Source ERP with Multi-Workspace
- 1,208 Downloads
- 9 Comments
-
Gratech – IT Service And Technology With Component Page Builder
- 502 Downloads
- 0 Comments
-
All Marketplace - 9 Paid Premium Extensions + 6 Premium Themes | MagicAi V7.3
- 28 Purchases
- 178 Comments
-
Whatsapp Gateway | Multi Device
- 3,135 Downloads
- 7 Comments
-
DriveMond - Ride Sharing & Parcel Delivery Solution [Agency Plus Pack]
- 711 Downloads
- 11 Comments
-
Laravel Invoice Pro
Laravel Invoice Pro
Free
- 17 Downloads
- 0 Comments
-
We Courier SAAS - Multi-Tenancy Courier and Logistics Management - Merchant, Delivery App With Admin
We Courier SAAS - Multi-Tenancy Courier and Logistics Management - Merchant, Delivery App With Admin
Free
- 23 Downloads
- 0 Comments
-
ChatFury WhatsApp Automation System
- 61 Downloads
- 0 Comments
-
AdFox - PWA Classified Ads with App-Like Mobile & Web Interface | Multi-Purpose Marketplace Solution + Modules
- 12 Purchases
- 23 Comments
-
GoBiz vCard SaaS - Powerful vCard Builder + WhatsApp Store Builder | Best vCard SaaS Script
- 581 Downloads
- 3 Comments
-
ColorPlay - AI SaaS Coloring Book Web App
- 29 Downloads
- 0 Comments
-
6valley Multi-Vendor E-commerce - Complete eCommerce Mobile App, Web, Seller and Admin Panel
- 3,112 Downloads
- 25 Comments
-
GoMeet - Complete Social Dating Mobile App | Online Dating | Match, Chat & Video Dating | Dating App
GoMeet - Complete Social Dating Mobile App | Online Dating | Match, Chat & Video Dating | Dating App
Free
- 522 Downloads
- 1 Comments
-
FoodScan - Qr Code Restaurant Menu Maker and Contactless Table Ordering System with Restaurant POS
FoodScan - Qr Code Restaurant Menu Maker and Contactless Table Ordering System with Restaurant POS
Free
- 759 Downloads
- 5 Comments
-
WhatsCloud - Seamless Cloud API Integration SAAS
- 757 Downloads
- 2 Comments
-
InfixEdu School - School Management System Software
- 1,113 Downloads
- 1 Comments
Upgrading to the premium plugin allows you to unload unused styles & scripts on extra pages such as:
is_author()
function)is_shop()
function)is_404()
function)is_date()
functionAs for the loaded JavaScript files, attributes such as defer and async can be applied
There are a plethora of techniques that are often used to defer parsing; however, the simple and preferred technique is to simply Defer loading of JavaScript until it is needed. If this technique isn’t appropriate to use on your page, it is next suggested that you use the <script async> attribute where appropriate, which prevents parsing from blocking the initial page load by deferring it until the browser’s UI thread is not busy doing something else. All these settings can be applied with Asset CleanUp Pro without writing any code.
Change the location of the CSS/JS files (could be moved from HEAD to BODY to prevent render-blocking or vice-versa if you need early triggering of specific files)
Unload CSS/JS that is hardcoded (not loaded via the standard WordPress functions such as
wp_enqueue_scripts()
). The LINK/STYLE/SCRIPT tags could have been added via editing the PHP code (not using the right WordPress action hooks), directly inside posts content, widgets or via plugins such as “Insert Headers and Footers”, “Head, Footer and Post Injections”, etc.⚙️ “Test Mode” Functionality → Worried about making optimization mistakes? Don’t be anymore!
This allows you to optimize the website (unload useless files, set async, defer to loaded JavaScript files, clean up HTML code) without applying the changes “live” (to the regular visitor) in case you ever have any doubts that a change could break the functionality of the page/website. Any changes you’ve done will only be applied for you (the logged in administrator). Once you’re happy with how the page looks and works, you can disable “Test Mode” to push the changes live so everyone else can enjoy the faster page loads ?
Demo