WPIntell

Source evidence

Sorting not working anymore

Intuitive Custom Post Order · support · 2024-05-17T10:31:00+00:00

complaintsentiment
mediumseverity
0.86relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 28 rows with source links

21.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
margarita – boomCodes unresolved
Since the 3.1.5 version I cannot sort either post types or taxonomies. But the 3.1.4.1 works fine. Could you maybe look at it? Thank you! Same issue. I fixed this by adding two cap to my user. $user = wp_get_current_user(); $user->add_cap( 'hicpo_load_script_css' ); $user->add_cap( 'hicpo_update_menu_order' ); This reply was modified 1 year, 12 months ago by Mirco Babini . Thanks. This fixed it but why is this necessary? 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 1 year, 11 months ago by SiteBolts . This reply was modified 1 year, 11 months ago by SiteBolts .

Comments

3 shown
Mirco Babini 2024-05-29T20:49:00+00:00

Same issue. I fixed this by adding two cap to my user. $user = wp_get_current_user(); $user->add_cap( 'hicpo_load_script_css' ); $user->add_cap( 'hicpo_update_menu_order' ); This reply was modified 1 year, 12 months ago by Mirco Babini .

marketvision 2024-06-10T15:18:00+00:00

Thanks. This fixed it but why is this necessary?

SiteBolts 2024-06-20T16:36:00+00:00

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 1 year, 11 months ago by SiteBolts . This reply was modified 1 year, 11 months ago by SiteBolts .