Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #364016

    Hi there,

    I want to manually order my portfolio items. I tried using the Post Type Order plugin but it conflicts with other plugins I am using o the site. I see that you guys have listed instructions here: http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/ I’ve added the code but I can’t find where to configure the order settings – where is the portfolio element settings screen? Thanks for your help!

    #364713

    Hey 1lizcollins!

    If you don’t want to use that plugin then add this to your functions.php file as well.

    add_action( 'init', 'enfold_customization_portfolio_supports' );
    function enfold_customization_portfolio_supports() {
    	add_post_type_support( 'portfolio', 'page-attributes' );
    }

    That will add the “Order” option to your portfolio posts (like your pages) which you can set a numeric value to each post to order them.

    And then when you edit your shortcode elements have them order by the “Page Order”.

    Cheers!
    Elliott

    #365306

    Perfect. Thank you so much for the amazing support!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Portfolio item order’ is closed to new replies.