Learn how to make ContactForm7 js and css load only on specified pages in WordPress without using a plugin.
Normally, when ContactForm7 is installed, js and css are loaded on every page, which slows down the display speed, but this can be prevented by using this method.
Edit functions.php.
If a child theme is available, use the child theme’s functions.php.
※Always make a backup before editing.
If only one page is to be loaded.
function deregister_cf7_files() {
if ( ! is_page(page ID) ) {
wp_dequeue_style( 'contact-form-7' );
wp_dequeue_script( 'contact-form-7' );
}
}
add_action( 'wp_enqueue_scripts', 'deregister_cf7_files' );
Easier code.
If you only want to load pages with the page slug ‘contact’, do the following
Enter any slug in the ‘contact’ part of the second line.
add_action( 'wp', function() {
if ( is_page( 'contact' ) ) return;
add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );
});
If there is more than one page to be loaded.
function deregister_cf7_files() {
if ( ! is_page(array('page ID1','page ID2')) ) {
wp_dequeue_style( 'contact-form-7' );
wp_dequeue_script( 'contact-form-7' );
}
}
add_action( 'wp_enqueue_scripts', 'deregister_cf7_files' );
Conclusion.
I have used the above code for “multiple pages to load” from the beginning, in case there will be more contact pages later on.
The work itself does not take long and can be implemented quickly, so please refer to this if you like.
Thank you for watching until the end.
Plugin Web Woocommerce Wordpress
Plug-in for exporting and importing CSV WordPress user information.
Use the plugin ‘Import and export users and customers’. Recommended for users who simply want to download user information in CSV format. We have tried several, but so far this plugin is the simplest to use.
Continue readingNews NGO
Non-governmental organization established.「Frecer NGO」
Today, the non-governmental organisation “Frecer NGO” was established. The aim is to grow and advance humanity while working to solve problems across the globe, whether local, national or international. There are many problems and challenges, but we want to work...
Continue readingHealth
How to live longer.
1. Don’t Cigarette.2. Moderate exercise.3. Nutritious and balanced diet.4. Maintaining a healthy weight.5. Good quality sleep.6. Avoid stress.7. Conclusion. Don’t Cigarette. There are several best ways to live longer, but if asked to choose just one, ‘don’t smoke’, say researchers....
Continue readingPlant
Aztekium ritteri
1. Habitat2. Description3. Farming Habitat Usually grows on vertical limestone cliffs. It is endemic to two remote small areas in the Nuevo León region of north-eastern Mexico. It is endangered in its habitat due to illegal collection and natural erosion...
Continue readingSpeed Web Wordpress
How to optimise page speed in WordPress.WordPress
If a web page does not load within the first two seconds, 55% of mobile users will leave that web page. Furthermore, around 70% of consumers in online stores report that page display speed is linked to their willingness to...
Continue readingPlugin Security Web Wordpress
Change Table Prefix plugin for changing WordPress database prefixes (prefixes).
If you want to enhance the security of WordPress, you need to change the database table prefixes. If you want to make simple and quick changes after installation, this plugin is the one to choose. Change Table Prefix Light, fast...
Continue readingCode Speed Web Wordpress
How to score 100 on the Google Speed Test.How to create better web vitals with WordPress themes and plugins. ‘Checklist for developers’.
This post explains how to get a score of 100 on the google speed test. 1. 1.Files2. 2.Fonts and typography3. 3.CSS framework4. 4.Conditional asset loading4.1. Inline styles4.2. Inline scope4.3. Using transients to store conditions4.4. Checking by name for loading5. 5.Image...
Continue readingAnimation
Post-airing popularity ranking of spring 2024 animations.
【10th place】A salad bowl of eccentrics 【9th place】Jellyfish Can’t Swim in the Night 【8th place】The Fable 【7th place】Oblivion Battery 【6th place】Konosuba: God’s Blessing on This Wonderful World!3 【5th place】Shuumatsu Train Doko He Iku? 【4th place】GIRLS BAND CRY 【3rd place】Mushoku Tensei:...
Continue readingCDN Security Speed Web
Does CDN delivery with Cloudflare reduce AdSense revenue?Various setting methods.
1. The impact of Adsense.2. The cause is that individual IPs are indistinguishable through Cloudflare (they are all the same IP through Cloudflare).3. How to make Nginx recognise individual IPs differentially.4. How to make apache recognise individual IPs separately. The...
Continue readingCode Web Without Plugin Wordpress
Without plugins!How to display a blog card with internal and external link support.|WordPress
Learn how to display blog cards in WordPress without using a plugin. Plug-in non-use has various advantages, such as reducing server load and maintaining site display speed. WordPress has a large variety of plugins, but you want to customise it...
Continue reading