Elementor AI Feature

support faq

Elementor AI Feature Elementor, the popular drag-and-drop website builder, has introduced several AI features that help streamline the web design process. In this article, we’ll take a closer look at these AI features and how they can benefit website designers. Take a Look for Elementor AI Design Assistance One of the key AI features in […]

Best Elementor Themes for Elementor in 2023

Best Elementor Themes for Elementor in 2023 Elementor is a popular page builder plugin for WordPress that allows users to create beautiful and functional websites without the need for coding skills. One of the advantages of Elementor is its vast collection of themes and templates that can help users get started with their website design […]

5 Best WordPress Google reCAPTCHA plugins

5 Best WordPress Google reCAPTCHA plugins Are you looking for the best WordPress Google reCAPTCHA plugins to protect your website from spam comments, unwanted login attempts and registrations? Look nowhere, I have prepared a list of the best Google reCAPTCHA plugins from WordPress. Before we start, let us discuss 1. What is Google reCAPTCHA CAPTCHA […]

Best Elementor Addons and Plugins in 2022

The World’s Leading WordPress Website Builder, Is only One is Elementor. Easily access and design each of your site parts – header, footer, product page and more – right within the Editor. Streamline your workflow, gain control, and enhance your results with the visual Theme Builder. Before looking for an alternative solution, you should definitely […]

How to Remove WordPress Version Number?

By default, WordPress leaves its footprints on your site for the sake of tracking. In sometimes this footprint might be a security leak on your site if you are not running the most updated version of WordPress. There are two ways. 1. Custom code in function.php remove_action(‘wp_head’, ‘wp_generator’); add_filter(‘the_generator’, function(){ return ”; }); 2. Using […]

How to Disable Dashicons in WordPress?

Dashicons is the official icon font of the WordPress. There are two ways. 1. Custom code in function.php add_action(‘wp_enqueue_scripts’, ‘ec_disable_dashicons’); function ec_disable_dashicons(){ if(!is_user_logged_in()) { wp_dequeue_style(‘dashicons’); wp_deregister_style(‘dashicons’); } } 2. Using EC Addons

How to Disable XMLRPC.PHP FOR WORDPRESS?

XML-RPC for WordPress was designed to enable remote connections between your site and external applications. WHY SHOULD I DISABLE XML-RPC? There are security risks associated with leaving XML-RPC enabled. These can include: Brute Force Attacks and DDoS Attack There are two ways. 1. Custom code in function.php add_filter(‘xmlrpc_enabled’, ‘__return_false’); add_filter(‘wp_headers’, ‘removeXPingback’); add_filter(‘pings_open’, ‘__return_false’, 9999); function […]

How to Disable EMOJIS in WordPress?

They are smileys used on the Internet. If you don’t use it, Emojis script (wp-emoji-release.min.js) in WordPress creates an extra request, which adds to total page load time, and slows down your WordPress site. Professional website never use it. For more info https://wordpress.org/support/article/emoji/ There are two ways. 1. Custom code in function.php add_action( ‘init’, ‘ec_emoji_scripts’ […]

How to Disable Trackbacks and Pings or Self Pingbacks on WordPress?

Trackbacks and Pings or Self Pingbacks allow blogs to notify each other that they have linked to a post. However, today it is mainly used by spammers to send trackbacks from spam websites. There are two ways. 1. Custom code in function.php function ec_disable_self_pingbacks( &$links ) { foreach ( $links as $l => $link ) […]

How to Disable Embeds in WordPress?

WordPress site now to load the wp-embed.min.js file. And this loads on every single page. The request itself is sometimes a bigger deal than the content download size. There are two ways. 1. Custom code in function.php add_action(‘init’, ‘ec_disable_embeds’, 9999); function ec_disable_embeds(){ global $wp; $wp->public_query_vars = array_diff($wp->public_query_vars, array(’embed’)); add_filter(’embed_oembed_discover’, ‘__return_false’); remove_filter(‘oembed_dataparse’, ‘wp_filter_oembed_result’, 10); remove_action(‘wp_head’, ‘wp_oembed_add_discovery_links’); […]