Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #571007

    For the “Enfold Latest Portfolio” widget, I see the Date and Time under the title. How can I display ONLY the date and NOT display the time?

    I provided a link for you to see in the private content area below.

    Thank you.

    #571817

    Hey santanin!

    Add this to your child theme functions.php file.

    add_filter( 'avia_widget_time', 'enfold_customization_widget_time' );
    function enfold_customization_widget_time( $time ) {
        return get_option('date_format');
    }
    

    Best regards,
    Elliott

    #571867

    Worked perfect!

    #572573

    Hi,

    Great, glad you got it working :-)

    Thanks,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.