Adding multiple items to WooCommerce cart at once
How to use Copy and paste the above snippet directly to your child theme’s functions.php. That’s all. Now lets see the front end part. Your single URL for adding multiple…
Add date-of-birth field to my-account / account detail pageAdd field to my account detail
/* Add field to my account detail */ // Add field - my account function action_woocommerce_edit_account_form() { woocommerce_form_field( 'date_of_birth', array( 'type' => 'date', 'label' => __( 'My Birth Date', 'woocommerce'…
User registered date – This month
/* users registered date - This month */ function wpb_registered_date_users() { global $wpdb; $recentusers = '<ul class="recently-user">'; $usernames = $wpdb->get_results("SELECT user_nicename, user_login, user_url, user_email, user_registered FROM $wpdb->users ORDER BY ID…
Date of birthday – Add admin menu
PHP code snippet This-month-birthday Today-birthday-user-list February-of-birthday Add admin menu