We were able to fix this issue by adding this hook function to our child theme’s functions.php file:
function fix_intuitive_custom_post_order_sorting()
{
if (current_user_can('administrator'))
{
$user = wp_get_current_user();
$user -> add_cap('hicpo_load_script_css');
$user -> add_cap('hicpo_update_menu_order');
$user -> add_cap('hicpo_update_menu_order_sites');
$user -> add_cap('hicpo_update_menu_order_tags');
}
}
add_action('admin_init', 'fix_intuitive_custom_post_order_sorting');
Not sure why it’s required though. It’s probably either a bug with this plugin’s latest update or a weird interaction with the User Role Editor.
We ended up switching to the Simple Page Ordering plugin afterwards since it appears to be regularly updated and didn’t have this issue.
-
This reply was modified 5 months ago by SiteBolts.
-
This reply was modified 5 months ago by SiteBolts.