Title: Date format
Last modified: January 11, 2020

---

# Date format

 *  Resolved [delsergio](https://wordpress.org/support/users/delsergio/)
 * (@delsergio)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/date-format-185/)
 * Hello,
 * The dates are in English format. My site is in French so I would like to have
   them in European format.
    For example: 16 octobre 2019
 * Best regards
    Serge
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdate-format-185%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Towhid](https://wordpress.org/support/users/cryptex_vinci/)
 * (@cryptex_vinci)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/date-format-185/#post-12316193)
 * Hi [@delsergio](https://wordpress.org/support/users/delsergio/)
 * Try this snippet:
 *     ```
       function um_profile_field_custom__user_registered( $value, $data ) {
   
       	$date_format = get_option( 'date_format' );
       	if ( $date_format ) {
       		$user_registered = um_user( 'user_registered' );
       		$value = sprintf( __( 'Joined %s', 'ultimate-member' ), date_i18n( $date_format, strtotime( $user_registered ) ) );
       	}
   
       	return (string) $value;
       }
       add_filter( 'um_profile_field_filter_hook__user_registered', 'um_profile_field_custom__user_registered', 110, 2 );
       ```
   
 * Thanks
 *  Thread Starter [delsergio](https://wordpress.org/support/users/delsergio/)
 * (@delsergio)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/date-format-185/#post-12318448)
 * Hello Towhid,
 * I put the code in my child theme and it works.
 * Thank you so much.
 * Serge

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Date format’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [delsergio](https://wordpress.org/support/users/delsergio/)
 * Last activity: [6 years, 4 months ago](https://wordpress.org/support/topic/date-format-185/#post-12318448)
 * Status: resolved