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.
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
Worked perfect!