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

    Hi Support

    Only for the home page, in the midle coloumn under “Documenti” I’d like to show only the title for the first post.

    And in this page http://www.simpios.eu/dalle-regioni/ I would like to sort by title the posts.

    Thanks

    Marco

    #754136

    Hey mtnet,

    Please try adding this to quick css:

    #av-magazine-2 article .av-magazine-content-wrap .av-magazine-content.entry-content{
    display:none !important;
    }

    Best regards,
    Jordan Shannon

    #754340

    Perfect Jordan! Thanks
    And for the sort order?

    #755528

    Hi,

    You are looking to have them in Alphabetical order?

    Best regards,
    Jordan Shannon

    #755583

    Yes, thanks
    And in this page http://www.simpios.eu/dalle-regioni/ I would like to sort by title the posts.

    #756587

    Hi,

    To display your posts in alphabetical order, you would have to add this to the functions.php file:

    function foo_modify_query_order( $query ) {
    if ( $query->is_home() && $query->is_main_query() ) {
    $query->set( ‘orderby’, ‘title’ );
    $query->set( ‘order’, ‘ASC’ );
    }
    }
    add_action( ‘pre_get_posts’, ‘foo_modify_query_order’ );

    Let me know if this works for you, or if you need additional help.

    Best regards,
    Jordan Shannon

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