Story Submitted
Custom Options Page in WordPress yourblogcoach.com
To create a custom options settings page in WordPress, you must have knowledge of WordPress action/hooks and settings API and how to use them. You can use admin_menu action hook and add_options_page(), add_menu_page(). add_submenu_page(), and settings API functions like settings_fields() and register_setting(), etc.
How to Calculate Age from Date of Birth (DOB) in PHP? yourblogcoach.com
We will use PHP date time functions (https://yourblogcoach.com/php-date-and-time-functions/) in our web applications and calculate the age from the user’s date of birth.
How to Create Custom 404 Error Page in Laravel? yourblogcoach.com
You can easily create custom error pages in laravel for 404 and also for other errors like 403, 500, 419, 255, 405. While working on any web application project the errors exception you can get at any time and you know laravel can handle them very easily and show them beautifully.
How to Create Table Using Laravel Migration? yourblogcoach.com
Laravel migration command helps to create the database table in your laravel project, so today in this tutorial, we will learn how to create a table in laravel using the migration.
How to Create a New Git Branch Very Easily? yourblogcoach.com
You can create a separate new branch from the main branch and then after all the fixes or new feature implementation, you can merge them later. When you merged all changes successfully then you can delete that git branch.
How to Delete Locally and Remotely Git Branch? yourblogcoach.com
To delete a local branch from your local machine, you have to use the git command that is git branch -d. The -d flag tells Git is that you want to delete that branch.
How to Get WooCommerce Cart Items Info? yourblogcoach.com
To get the cart items info, we will use the global WC() function or global $woocommerce variable to get the cart item’s details. You can use these variables anywhere in the woocommerce platform.
How to Create a WooCommerce Payment Gateway Plugin? yourblogcoach.com
Create a simple woocommerce payment gateway plugin. You need to register the payment gateway class to create custom payment gateway.
Convesio Hosting – Best Managed WordPress Hosting yourblogcoach.com
Convesio is the best-managed WordPress hosting provider. Convesio is the future of WordPress hosting. Its infrastructure is based on Docker Containers.
Multi-select Dropdown with Checkbox in jQuery » Your Blog Coach yourblogcoach.com
See how we can convert normal select box dropdown to multi-select dropdown value with checkbox using jQuery.
How to Add or Remove Input Fields Dynamically Using jQuery? yourblogcoach.com
Dynamic input fields are a very good feature that allows users to submit multiple values of the same field reference.
How to Convert Html to PDF using JavaScript? » Your Blog Coach yourblogcoach.com
Uuse the jsPDF library to export the HTML content into a PDF file. jsPDF library is the best solution to generate the PDF, It is an open-source library and everyone can use it.
How to Register Custom Post Status in WordPress? » Your Blog Coach yourblogcoach.com
Register custom post status for blog post in WordPress using the plugin and programmatically. And also register for the quick edit post section.
Python range() Function – reverse, increment, decrement yourblogcoach.com
The python range() function is the core in-built function to used perform an action until the specified number of times. So in this tutorial, we will learn all about the…Read more »
How to Get WooCommerce Order Details? » Your Blog Coach yourblogcoach.com
So, sometimes we want to change the design of the template with our custom template and in that template, we need order details to show as per custom design. We can also use the wc_get_orders(), this is a function to get the order object and get the order details on a certain parameters.