Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #558722

    Hallo Support-Team,

    danke für das tolle Theme, ich arbeite sehr gerne damit!
    Wie kann ich per CSS steuern, dass imm Combo Widget die Uhrzeit der Veröffentlichung nicht angezeigt wird? Datum soll angezeigt werden, nur die Uhrzeit nicht.
    Danke für Euer Feedback und einen guten Rutsch ins neue Jahr!
    Grüße
    Julika

    #558805

    Hey monja_kantenwein!

    Try adding this to your custom CSS.

    time, .time-meta { display: none !important; }
    

    If that does not work then send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Regards,
    Elliott

    #560110

    Hi Elliott
    Happy new year! :-)
    Thanks for your response.
    Unfortunately it does not work with this CSS code. Maybe you can have a look on my site.
    Thank you very much!
    Regards,
    Julika

    #560245

    Hey!

    Try this.

    .news-time { display: none !important; }
    

    Cheers!
    Elliott

    #560476

    Thanks! But now the time AND the date are not visible.
    My question was to disable only the time. Is that possible?

    #560931

    Hi!

    Please remove the css code then add this in the functions.php file:

    function custom_widget_time($time_format) {
                    $time_format = get_option('date_format');
                    return $time_format;                                  
    }
    add_filter('avia_widget_time', 'custom_widget_time');

    Cheers!
    Ismael

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