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

    I’m configuring a Portfolio Grid Element and I see the Order by > Page Order option, but I don’t see any Order field available in the Portfolio Entries (as there is in actual pages). Am I missing something?

    Thanks.

    #712634

    the page order means if you are on dashboard page list the order of the pages there. Pages on top and down.
    The Page ID and order here is determined by creating time. – But i believe you can set a page order by quickedit option on that list.

    But my advice is to install that little plugin “intuitive custom postorder”
    Installed and activated you can go to options dialog of that plugin and set the influence of that plugin to pages, posts, portfolios, categories etc.

    after that you can drag&drop (nearby the mark field there will be than a up and down sign on hovering that place) in that pages list pages up and down creating your own order

    look here: https://wordpress.org/plugins/intuitive-custom-post-order/screenshots/

    #712651

    But that’s just it — the Portfolio Items don’t seem to have a page order field like the Pages do. And the Portfolio Item list in the dashboard is set by Date Published. So, as far as I can tell, the options in the Portfolio Grid Element for Order by > Page Order and Order by > Date are no different. Please correct me if I’m wrong.

    #713380

    Hi,

    You have to modify the “supports” parameter of the portfolio registration. Please add this in the functions.php file.

    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1);
    function avf_portfolio_add_custom_fields($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }

    Best regards,
    Ismael

    #713681

    OK, thanks, but, unless i have some other reason to start a child theme for this site, I’ll just use the Order by Post Slug option and use numbers in the slugs — just wanted to make sure I wasn’t missing something. Thanks anyway!

    #713726

    Hey!

    Feel free to let us know if you need anything else
    Please remember to rate our theme also at Themeforest!

    Thanks a lot

    Regards,
    Basilis

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘portfolio grid order by page order, no page order in portfolio entries?’ is closed to new replies.