Author: therichpost

  • How to Disable WooCommerce shop page?

    Hello, welcome to therichpost.com. In this post, I will tell you , How to Disable WooCommerce shop page? WordPress is the best cms and Woocommerce is the best Ecommerce plugin. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the best thing about…

    woocommerce
  • How to render an array of objects in React?

    Hello, welcome to therichpost.com. In this post, I will tell you, How to render an array of objects in React?Reactjs is a Javascript Library to build user interface. Now I am also learning Reactjs these day because of my passion to learn new things. In this post, we will render an array data.  We will…

    reactjs
  • How to Change the author slug WordPress?

    ,

    Welcome to therichpost.com. In this post, I will tell you, How to Change the author slug WordPress? Like I always say WordPress is the best cms. Here is the working code for Change the author slug WordPress and you need to add this into your theme’s functions.php file: add_action(‘init’, ‘cng_author_base’); function cng_author_base() { global $wp_rewrite; $author_slug…

    How to add custom meta title and meta description in Wordpress?
  • How to Require minimum comment length for post in wordpress?

    Welcome to therichpost.com. In this post, I will tell you, How to Require minimum comment length for post in wordpress? Like I always say WordPress is the best cms. Here is the working and tested wordpress hook for Require minimum comment length for post in wordpress and you need to add this into your theme’s…

    How to add custom meta title and meta description in Wordpress?
  • How to merge two components in reactjs?

    Hello, welcome to therichpost.com. In this post, I will tell you, How to merge two components in reactjs? Reactjs is a Javascript Library to build user interface. Now I am also learning Reactjs these day because of my passion to learn new things. In this post, we will merge two components and render combine output.…

    reactjs
  • Install Reactjs easy and simple

    Hello, welcome to therichpost.com. In this post, I will tell you, How to install reactjs on your local machine in easy and simple manner?  Reactjs is a Javascript Library to build user interface. Now I am also learning Reactjs these day because of my passion to learn new things. In this post, we will see,…

    reactjs
  • Reactjs fetch data from wordpress

    ,

    Hello, welcome to therichpost.com. In this post, I will tell you, Reactjs fetch data from wordpress. Reactjs is a Javascript Library to build user interface. This is data coming from wordpress in reactjs app index.html file: In this post, I will tell you, how to fetch data from wordpress(wordpress user) with reactjs. In my app,…

    reactjs
  • How to Add new country to WooCommerce countries list?

    Hello, welcome to therichpost.com. In this post, I will tell you , How to Add new country to WooCommerce countries list? WordPress is the best cms and Woocommerce is the best Ecommerce plugin. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the…

    woocommerce
  • How to disable automatic updates in wordpress?

    Welcome to therichpost.com. In this post, I will tell you, How to disable automatic updates in wordpress? Like I always say WordPress is the best cms. Here is working code to stop automatic updates in wordpress and you need to add this into wp-config.php file: //To disable automatic updates for major releases or development purposes, the…

    How to add custom meta title and meta description in Wordpress?
  • How to get wordpress theme information?

    Welcome to therichpost.com. In this post, I will tell you, How to get wordpress theme information? Like I always say WordPress is the best cms. Here is the working and tested for How to get wordpress theme information: <?php $theme_data = wp_get_theme(); echo $theme_data->get( ‘Name’ ); echo $theme_data->get( ‘ThemeURI’ ); echo $theme_data->get( ‘Description’ ); echo $theme_data->get(…

    How to add custom meta title and meta description in Wordpress?