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
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
but there is no meta box page order on the portfolio!!!
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