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

    Hi Enfold Team,

    1. I read the topic ‘Remove meta information’ and added the CCS,
    but it still shows the date and “/” like: “28. November 2024 / /”
    (i use: Einzelner Autor, kleines Miniaturbild (kein Autorenbild dargestellt, kleines Feature-Bild)
    2. is it possible to change the order in the Blogpost module. I want the oldest Blogs first, the newest at last.

    best regards
    Manfred

    #1463577

    Hey Manfred,

    Thank you for the inquiry.

    1.) You can use this css code to hide the separator beside the date:

    .slide-meta-time + .slide-meta-del {
        display: none !important;
    }

    2.) Which blog layout did you select? If it is set to the grid layout, please add this filter in the functions.php file:

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    function avia_post_slide_query_mod( $query ) {
    	$query['orderby'] = 'date';
    	$query['order'] = 'ASC';
    
    	return $query;
    }
    

    Best regards,
    Ismael

    #1463600

    Hey Ismael,

    thank you very much for you quick feedback. That is really fantastic.

    The functions.php filter works pretty well.
    I need it for “Single Author….- Layouts” too – and sooner or later for all layouts may be.

    The CCS Code does not work – my be, because all posts and site are private?
    The best would be to hide date and all meta data at all Blog Post Content Elements.

    Best regards
    Manfred

    #1463710

    Hi,
    Glad that this helped, the css should work even though your site is in private, but we will need to see it to examine why it is not working for you.
    Please include a admin login in the private content area and a link to the page with the issue so we can be of more assistance.

    Best regards,
    Mike

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