Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #510924

    Hi,

    Thanks a lot for the great theme.
    I am using the Enfold combo widget and already deactivated comments thanks to old forum questions.
    I would like to deactivate the hour and possibly the date at which the popular post where posted. Is there a way to do that ?

    #511147

    Hey anniet,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #511254

    Hi Rikard,
    here is the link
    http://www.tinteo.com/actualites/

    #511653

    Hey!

    Add this to the bottom of your functions.php file.

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

    Best regards,
    Elliott

    #512303

    Thanks,
    Do you have an option as css ?
    it would be better as I don’t have a child theme.

    thanks

    #512311

    Hey!

    Sure, please add following code to Quick CSS in Enfold theme options under General Styling tab

    span.news-time {
        display: none;
    }

    Cheers!
    Yigit

    #512341

    thanks

    #512577

    Hey,

    Glad we could help :-)

    Cheers!
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Enfold combo widget – take out the date and hour’ is closed to new replies.