Tag: Wordpress

  • Best Page Speed Optimization Plugins 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?

    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 Create a Custom WordPress Widget?

    How to Create a Custom WordPress Widget?

    Widgets are an essential part of any WordPress website, as they provide an easy way to add functionality and features to your site’s sidebars and other widget-ready areas. In this tutorial, we will show you how to create a custom WordPress widget that includes a text field and a textarea field, which can be used…

  • How To Increase WordPress Length Of The Slug/Permalinks

    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.  …

  • How to Add Newsletter Subscription With Name and Email

    How to Add Newsletter Subscription With Name and Email

    In this article, you will come to know how to add newsletter subscription with a name and email Let’s get started <?php namespace Elementor; class Newsletter extends Widget_Base{ public function get_name(){ return “Newsletter”; } public function get_title(){ return “newsletter”; } public function get_icon(){ return “eicon-banner”; } public function get_categories(){ return [‘dicomcategory’]; } protected function register_controls(){…

  • Remove Archive labels from Archive title in WordPress

    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 use ACF repeater field with meta_query?

    How to use ACF repeater field with meta_query?

    Hello there! Welcome back to another TechSolutionsHere article. In this article, I will show you how to use ACF repeater field with meta_query. Let’s get started! Trying to loop through an ACF repeater field using a meta_query, inside the WP_Query? All you need is a function to replace the way the meta_key works. You need…

  • How to add Preloader in WordPress without plugin

    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?

    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

    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!

    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?

    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

    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:…

  • How to Create Breadcrumbs Without a Plugin in WordPress?

    How to Create Breadcrumbs Without a Plugin in WordPress?

    Are you looking for an easy way out of creating breadcrumbs without a plugin in WordPress? Then you are in the right place!In this article, I will show you how to add breadcrumbs to your WordPress site. Using plugins on a WordPress website is definitely not a problem unless you overload your website with a…

  • How to Show Custom Taxonomy in the Custom Post Sidebar?

    How to Show Custom Taxonomy in the Custom Post Sidebar?

    Sometimes we need to show custom taxonomy in the custom post sidebar. If you already registered a custom post and you want to show custom taxonomy in the custom post sidebar, I think this tutorial will help you. In this tutorial, I will show custom taxonomy(category) in the custom post sidebar. Please follow the below…

  • Top 5 Instagram Feed Plugins for WordPress – Free and Paid

    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?

    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?

    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…

  • Remove Menus From The WordPress Dashboard

    Remove Menus From The WordPress Dashboard

    If you want to hide specific menus from the WordPress dashboard, are you looking for a simple way? Then you are in the right place! I have searched in the WordPress plugin directory and found some plugins available. For such a simple task I didn’t prefer to use a plugin. You can implement this quickly…