-
Disable User Password Change Email/Notification on WordPress
Wondering, How to disable user password change emails/notifications. Here is your answer. Disable Password Change Email to Admin Note: Create a Plugin or Add this code inside a custom plugin to make this code work. Suppressing this email notification has to handled with a plugin because pluggable.php is loaded earlier than a theme’s functions.php file. Disable Password Change Email…
-
How To Use AJAX In WordPress
Want to do something without even reloading the page on wordpress ? Use WP Ajax. Using WP Ajax, You can do stuff asynchronously like Add to Cart, Refresh Fragments, Change Quantity of Products, Load more posts and many more. How to create Ajax Calls in WordPress ? 1. Create Ajax Actions on WordPress. Example: Woocoommerce…
-
Add/Create Shortcode with Arguments
Shortcodes are pretty useful in wordpress to show static/dynamic custom content according to your needs. You can use shortcodes to show dynamic content like Posts, Categories, Products, etc. Many WordPress plugins and themes use shortcodes to add specialized content like contact forms, image galleries, sliders, and many more. If you’re thinking to learn WordPress backend,…