This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Notify admin when a new customer account is created and user meta data is saved | |
* So, you can show user meta data like 'billing_phone' in the email | |
*/ | |
add_action( 'woocommerce_checkout_update_user_meta', 'woocommerce_created_customer_admin_notification' ); | |
function woocommerce_created_customer_admin_notification( $customer_id ) { | |
wp_send_new_user_notifications( $customer_id, 'admin' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function bp_notification_badge() { | |
if ( is_user_logged_in() ) { | |
echo '<ul class="noti_nav">'; | |
$notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id() ); | |