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

    Hi
    I’ve used two different versions of Enfold and neither options seem to have the portfolio order that is desired.
    When sorted by date, it sorts by the portfolio dates.
    When it sorts by title, it sorts by the portfolio titles.
    When it sorts by page order – it doesn’t link to the page order field in the pages section, and there is no reference to page order in the portfolio section only in the pages section.
    Could you please explain how the sorting of the portfolio grid functions.
    Thanks

    #1309055

    Hey merryng,

    Thank you for the inquiry.

    The portfolio post type does not support the page order option by default, but you can enable it manually. You can add this filter in the functions.php file to enable the page attributes for the portfolio items.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Make sure to set the “Order by” settings to “Page Order”.

    Best regards,
    Ismael

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