saeed khorram del
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] subscription confirmationthanks its work on default comment form of my template
but this do not work for wpdiscuz i use this plugin for my comment system and user do not recive any email
can you give me a solution ?
- This reply was modified 5 years ago by saeed khorram del.
Forum: Plugins
In reply to: [WooCommerce] Displaying namehi
thanks again
i found a solution which works correctly , this is the code for those who want to use it
/** * New user registrations should have display_name set * to 'firstname lastname'. This is best used on the * 'user_register' action. * * @param int $user_id The user ID */ function set_default_display_name( $user_id ) { $user = get_userdata( $user_id ); $name = sprintf( '%s %s', $user->first_name, $user->last_name ); $args = array( 'ID' => $user_id, 'display_name' => $name, 'nickname' => $name ); wp_update_user( $args ); } add_action( 'user_register', 'set_default_display_name' );- This reply was modified 5 years, 1 month ago by saeed khorram del.
Forum: Plugins
In reply to: [WooCommerce] Displaying namehi
this pluging does not work and has many problems
please if you can give me a code for this job
Forum: Plugins
In reply to: [WooCommerce] custom fields for registration formthanks and this plugin can do this job ?
adding a phone number field in section of edit account in dashboard that users can edit their phone number in there ?
- This reply was modified 5 years, 1 month ago by saeed khorram del.
Viewing 4 replies - 1 through 4 (of 4 total)