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
You can create your own custom page template with any wordpress theme. To create wordpress custom theme, please follow given steps Create a new file like page-my-template.php and save it under current theme root folder Or you can create copy of page.php file and save it with your page-home.php Now, Lets define custom template name
get_template_directory_uri() function returns the URL to the root theme, It means when you will add a custom css, image or js files in theme template files, then you will require to give a full path to load new file and this function will help you to provide theme root path. get_template_directory_uri() >> http://yourdomain.com/wp-content/theme/your-theme Example: I
To add the submenu item under any custom post type page, First you will need to create a submenu item under custom post type menu section and then need to create a option page. To add a new Sub-menu to WordPress Administration, use the add_submenu_page() function. add_submenu_page() function takes a capability which will be used
Hi Friends, If you are facing HTML block height related responsive issue then you can use given below HTML to make all boxes in a same height CSS <style type="text/stylesheet"> div.box { float: left; width: 23%; background: #ccc; margin: 10px 1%; padding: 1%; } @media all and (max-width: 900px) { div.box { width: 48% }
Hello Friends, I hope you are you doing well. I am here again going to share some useful knowledge regarding to woocommerce shipping information. If you want to change “No Shipping Method Available” then you will need no need to edit in plugin core files. Just add given below code into your theme function files
Hello Friends!! I hope your are doing well. I want let you know all that today we have released new wordpress widget plugin. This plugin will be very helpful to manage recent posts for your custom post types. Using our this plugin you will able to define recent posts of any post type. PLUGIN FEATURES
CF7 Advance Security “CF7 Advance Security” does not work alone. It is originally created for Contact Form 7, so before install “CF7 Advance Security” you must have need to install contact form 7 on your website. Features Math Captcha option for add to email double confirmation Hidden Capctha (for control on robot spam) Click here
Hello Friends, I you are using your own custom post type on wordpress site and want to remove the custom post type slug from post url then you can do it easily using hooks. You will no need to edit any wordpress core file, just copy and paste given blow code into your theme function.php
Hello Friends!! If you want perform any action during add/edit/delete category/taxonomy without changing in wordpress core files then you can do it using wordpress hooks . You will only need to add given blow function in your theme function file, no need to edit /** Call function during create new category/taxonomy */ add_action('create_term','wp_custom_save_taxonomy'); function wp_custom_save_taxonomy($term_id)