-
WordPress : Remove Welcome Panel from WordPress Dashboard.
Read more: WordPress : Remove Welcome Panel from WordPress Dashboard.WordPress : Remove Welcome Panel from WordPress Dashboard. How to remove Welcome Panel from WordPress Dashboard? Welcome panel is a Useful meta box added to the WordPress dashboard screen of WordPress admin area. It provides useful shortcuts for new users to do important things on their new WordPress site.You Can remove this easily by removing…
-
WordPress : Add Admin User in WordPress By FTP client.
Read more: WordPress : Add Admin User in WordPress By FTP client.Did You Forget WordPress Admin credentials? How will you login now if forget Admin credentials? This happens many times when we forget the login password of WordPress. If you have FTP details then no need to worry about it. You can create new admin user using FTP. Just paste this code to your theme’s functions.php.…
-
Adding Sidebar in WordPress Themes.
Read more: Adding Sidebar in WordPress Themes.How to Add a Custom Sidebar to a WordPress Theme? What’s a sidebar in WordPress ? WordPress Sidebars allow you display all type of widgets inside your theme. And you can use “sidebars” to display widgets anywhere you want.All themes by default come with at least one sidebar in it. Sidebar is one of the…
-
Add Custom Dashboard Widgets in WordPress.
Read more: Add Custom Dashboard Widgets in WordPress.Add Custom Dashboard Widgets in WordPress. How To Add New Custom Dashboard Widgets in WordPress? There are many of new themes coming out for WordPress every day, but none of them seems to utilize this feature for providing useful information and links for client. WordPress developers should add custom dashboard widget with support information when…
-
WooCommerce : Dynamic Pricing According To Quantity.
Read more: WooCommerce : Dynamic Pricing According To Quantity.WooCommerce : Dynamic Pricing According To Quantity. How To Set Dynamic Pricing Of Product According To Quantity?. Dynamic Pricing may be set by setting pricing rules based on products, order totals, roles, and product categories. In this post we will set price according to product quantity. Dynamic Pricing According To Quantity Set By Two Condition”…
-
WooCommerce : Disable Repeat Purchase Of Products.
Read more: WooCommerce : Disable Repeat Purchase Of Products.WooCommerce : Disable Repeat Purchase Of Products. Want to sell one product only once per user? Restrict User to buy a specific product only once in a lifetime from your WooCommerce site? Some times in WooCommerce products we need to stop user from buying product multiple time, that means user can buy that product only…
-
Change WordPress Login Logo And Logo URL and Logo Hover Title
Read more: Change WordPress Login Logo And Logo URL and Logo Hover TitleChange WordPress Login Logo And Logo URL and Logo Hover Title How Can We Change The Login Logo And Login Logo URL And Logo Hover Title? Default login page in WordPress is https://yoursiteurl/wp-login.php It contains WordPress logo and on clicking on logo it will take you to the WordPress official site “https://wordpress.org” As shown in…
-
WordPress Shortcode.
Read more: WordPress Shortcode.Since Version 2.5 WordPress supports so called ‘Shortcodes’. Example: Shortcodes can also be used with attributes as the following example shows: Example: WordPress have some of the shortcodes by default (for example the audio one). The following shortcodes are included with WordPress: hortcodes are of both type singular and paired. We can define custom shortcodes…
-
How to Calculate distance between two address using latitude and longitude.
Read more: How to Calculate distance between two address using latitude and longitude.How to Calculate distance between two address using latitude and longitude. According To me it’s one of important requirement in many projects related to address. To Calculate distance between two address using latitude and longitude use this method. function LongLatDistance($Latitude1, $Longitude1, $Latitude2, $Longitude2) { $theta = $Longitude1 – $Longitude2; $miles = (sin(deg2rad($Latitude1))*sin(deg2rad($Latitude2)))+(cos(deg2rad($Latitude1))*cos(deg2rad($Latitude2)) * cos(deg2rad($theta))); $miles…