OTP login is more secure than a static password, especially a user-created password, which can be weak and/or reused across multiple accounts. OTPs may replace authentication login information or may be used in addition to it in order to add another layer of security. OTP Login As per wordpress customer request we have created a
We can add url prefix for wordpress blog posts in two way. Using permalink structure settings Using hooks 1. Using permalink structure settings You can add blog post suffix easily by updating permalink structure to /blog/%post_name%/ , here we are using blog text as suffix for all post url. After saving the settings, post url
In this post, we are going to build a dropdown mobile menu with all parent menu items. If you have many child menu items for your mobile menu, this can become a long list. With a dropdown mobile menu, we can open the sub menus item on mouse click and can make it a lot
Hello Friends, Today I am going to share a helpful information about Divi theme. As we know that Divi theme is most popular paid theme of the WordPress who have provide a lots of prepaid features, so any one can create a modern stylish website without any coding knowledge. By default Divi theme are allowing
Hello Friends, I hope you are doing good. Today we are sharing important information about how to add inline css code in WordPress site Normally we use wp_head or wp_footer action hooks function to add custom css code on our website but it’s not a right way to add css on your website. If you
Hello Friends, I hope you are doing good. Today we are sharing important information about shortcode . Normally using wordpress shortcode hooks function add_shortcode() we can register new shortcode. We used enqueue CSS/JS file in our shortcode to make content stylish and to add some advance js features. Mostly all WordPress developers used enqueue script
Hello Friends. If you want to give an option for your customers to define quantity on shop categories page then use below code. You need to add below code into theme functons.php file function custom_quantity_field_archive() { $product = wc_get_product( get_the_ID() ); if ( ! $product->is_sold_individually() && 'variable' != $product->get_type() && $product->is_purchasable() ) { woocommerce_quantity_input( array(
Hi Friends, Today we are going to share very useful information to create the menu for logged-in or non-logged user separately and switch the menu automatically. If you don’t have any technical knowledge then don’t worry, you can easily do it by following given below steps. Steps To Create Logged in and Non-Logged in
Hello Friends, Today I am going to share a helpful information about Divi theme. As we know that Divi theme is most popular paid theme of the WordPress who have provide a lots of prepaid features, so any one can create a modern stylish website without any coding knowledge. Divi theme has provided a Divi
Hi Friends, WooCommerce by default does display a “Read more” message instead to “Out of stock” for all out of stock products. If you would like to display “Read more” text as ‘Out of stock’ then you can do it without any technical knowledge . You will need to add given below code into your