Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #664435

    Hi I’d like to know how ot add a quick CSS solution for each of the following cases:

    1- remove the time on the latest news widget (while keep the date).

    2- remove both the time and date on the latest news widget.

    3- remove the time on the combo widget (while keep the date).

    4- remove both the time and date on the combo widget.

    Thank you :)

    #665000

    Hey Mahran2016,

    1 & 3- Please add following code to Functions.php file of your child theme in Appearance > Editor

    add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
    function change_avia_date_format($date, $function) {
      return get_option('date_format');
    }

    2 & 4- Please add following code to Quick CSS in Enfold theme options under General Styling tab

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

    Best regards,
    Yigit

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