• Resolved FREEZhao

    (@freezhao)


    I add two date block in one form, with the same format setting, but one is show properly anther is not(the format like Y-mm-dd does not work).

    I duplicated the right one, but it still show unporperly.

    Screenshot:

    https://prnt.sc/_G41MlKEbqS8

Viewing 2 replies - 1 through 2 (of 2 total)
  • @freezhao

    You can try this code snippet

    add_filter( "um_get_field_date", 'um_get_field_date_custom_format', 10, 1 );
    
    function um_get_field_date_custom_format( $array ) {
        
        $array['js_format'] = 'yyyy-mm-dd';
    
        return $array;
    }

    Add the code snippet to your active theme’s or child-theme’s functions.php file
    or use the “Code Snippets” plugin.

    https://www.ads-software.com/plugins/code-snippets/

    Plugin Support andrewshu

    (@andrewshu)

    Hi @freezhao

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Date format does not show properly’ is closed to new replies.