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

    Hi,

    I noticed that on the Masonry element there is an option to sort by Page Order. How does that work? What criteria does it use for sorting?

    Thanks

    Phil

    #931012

    Hey philthebass,

    Thank you for using Enfold.

    You can use Page Attributes > Order field to adjust their position manually if the sort by “Page Order” option is set.

    Best regards,
    Ismael

    #1462450

    but there is no meta box page order on the portfolio!!!

    #1462461

    Hi,

    For the portfolio post type, you have to add this filter in the functions.php file to enable the Page Attributes > Order field.

    /* 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');

    Best regards,
    Ismael

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