Tag: Wordpress
-
Best Page Speed Optimization Plugins WordPress
When it comes to running a successful website, page speed is a crucial factor that can significantly impact user experience and search engine rankings. Slow-loading pages can lead to higher bounce rates, decreased conversions, and frustrated visitors. Fortunately, WordPress offers a wide range of plugins designed to optimize page speed and enhance overall performance. In…
-
How To Create A Custom Post and Custom post Elementor widget?
You need to define the custom post type by specifying its name, label, and other parameters. You can do this by adding code to the functions.php file in your WordPress theme or by using a plugin like Custom Post Type UI. Step-1 : Here’s an example of how you can define a custom post type:…
-
How To Increase WordPress Length Of The Slug/Permalinks
Hello there! Welcome back to another TechSolutionsHere article. In this article, We will learn how to increase the WordPress length of the slug/permalinks. In WordPress core, the slug limit is 200 characters. We will make it 3000 characters. So, Let’s get started Step:01 Go to your WordPress Dashboard->Plugins->Add New and search with Longer Permalinks. …
-
Remove Archive labels from Archive title in WordPress
Welcome to TechSolutionsHere. Today’s post is about removing Archive labels from Archive title in WordPress. Let’s get started… To do this you can use a filter following the below and put it in a file functions.php add_filter( ‘get_the_archive_title’, ‘my_theme_archive_title’ ); /** * Remove archive labels. * */ function my_theme_archive_title( $title ) { if ( is_category()…
-
How to add Preloader in WordPress without plugin
Form this tutorial you will find out how to change the preloader in WordPress without a plugin. Let’s start …. Step-1: Add code in sample-config.php // Preloader Options Redux::setSection( $opt_name, array( ‘title’ => esc_html__( ‘Preloader’, ‘gtfix-toolkit’ ), ‘id’ => ‘preloader_opt’, ‘icon’ => ‘dashicons dashicons-controls-repeat’, ‘fields’ => array( array( ‘id’ => ‘enable_preloader’, ‘type’ => ‘switch’, ‘title’…
-
How to Change Custom Post Type URL?
If you have already a custom post type and you want to change the slug/url of the post, please follow the below instruction Search your theme/plugin for register_post_type function and check if the function exists rewrite parameter. If it doesn’t exists add it following the below: $args = array( // your other arguments ‘rewrite’ =>…
-
How To Integrate Paddle Payment Method To WordPress / WooCommerce
Hello there! Welcome back to another TechSolutionsHere tutorial. Today we will integrate the paddle payment method into the WordPress website with WooCommerce. The paddle is an effective platform that gives businesses like PayPal and stripe a pleasant opportunity. In this article, we will reveal to you how to integrate Paddle into your WordPress WooCommerce…
-
Exclude Custom Post Type Or Others From Blog Search In WordPress!
If you have custom post types or others (ex: WooCommerce, WooCommerce category) in your theme and those showing up in WordPress search results and you want to exclude them from blog search hope this tutorial will help you to sort it out. Let’s start… Please copy and paste the below code into your function.php file…
-
How To Support SVG File Type In WordPress Media Library?
SVG (Scalable Vector Graphics) is an XML-based vector image that is commonly used by websites and brands to display logos and icons on their websites. It creates images out of curves and allows for animations. WordPress by default though doesn’t allow you to upload SVG file type into the media library for security reasons. In…
-
Add Custom Icons in Elementor Page Builder Widget
In this article, you will come to know how to add custom icons in elementor widget on a website! so let’s start. At first, create a file in your elementor compatible plugin and include it according to the file include the procedure. Suppose we want to add box icon, so we can write this code:…
-
Top 5 Instagram Feed Plugins for WordPress – Free and Paid
Are you hunting for the best Instagram feed WordPress plugin! In this article, I have picked some amazing Instragam feeds plugins for WP. Which will help you to increase your followers and boost your online conversion rates. Undoubtedly Instagram is the best social media platform to share images, videos. In the last few years, Instagram…
-
How to Make an email Feedback form by WordPress?
In this article, you will come to know how to make an email feedback form by WordPress! Let’s start. At first, create an HTML static form in this way. <form action=”” class=”envy-doc-email-form form-container” name=”frm” method=”post” style=”display:none;”> <h3 class=”envy-doc-email-form-heading”><?php echo esc_html__(‘How can we help you?’, ‘envy-doc’); ?></h3> <input class=”envy-doc-email-form-input” value=”” name=”uname” id=”uname” type=”text” placeholder=”Enter Full Name”…
-
How To Add Next And Previous Post Links With Thumbnail?
If you want to use next and previous post links with thumbnail on your blog post without a plugin, you can follow the below procedures. So, let’s get started! Step 1: Open your themes single.php file. Step 2: Copy the below code and paste it where you want the next/previous post links with thumbnail to…