Hi there,
The ICPO plugin has stopped working on our site. I’ve tried reinstalling the plugin, changing up the check boxes, deactivating, clearing caches.
I’m using WP version 6.6.2 and ICOP Version 3.1.5.1. And I get the “Warning:?This plugin?has not been tested?with your current version of WordPress.” message.
Any help you can offer?
Thanks!
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!
Hello,
I try to order sub category, i can drag and drop but the order not save, when i reload the categories pages, the sub category aren’t in the good order.
Thanks
こんにちは。
通常通りプラグインをインストール?設定しましたが、デフォルト投稿のカテゴリの並び替えができません。記事の並び替え?カスタム投稿のタクソノミは問題なく並び替えができています。
POSTに対してデフォルトで用意されている「category」と他に「area」「genre」などオリジナルのタクソノミもfunctionsにて作成しており、並び替えが保存されないのはこの3つです。
ドラッグドロップのカーソルは表示されており、視覚的には並び替えできますが、ドロップ後ページを更新すると並びが元に戻っており、並び替えた時点でのオーダーがDBに保存されていないようです。
WordPress 6.5.2
Intuitive Custom Post Order 3.1.5
動作しないため、「Category Order and Taxonomy Terms Order」を追加して有効化したところ、カテゴリが全て表示されなくなったため、このプラグインは削除しました。
]]>Hey,
I recently found an issue when using the plugin’s functionality combined with some object caching, ie. Docket Cache.
After rearranging CPTs, the actual sort order won’t get updated reliably. I think we’d need to flush object cache data on this event when used with enabled object cache. See WP’s own wp_cache_flush() function.
Could you please check to see if this is something that needs to be included in your plugin?
In the meantime, are there any hooks that could be used to trigger this myself?
Thanks!
]]>Thank you for always providing us with great plugins.
I am going to create a new WordPress site and installed the Intuitive Custom Post Order plugin as usual, but it is not working properly on the Custom taxonomy page.
My environment is as follows.
WordPress 6.4.3
Intuitive Custom Post Order 3.1.5
It doesn’t work for either native or custom, post or taxonomy.
I am running with admin rights.
There is no error in browser console.
I have tried clearing the cache and incognito browsing for help, but I can’t drag it.
mac OS Venture 13.4
Both of Safari and Google Chrome
I have enabled only the following two plugins: Intuitive Custom Post Order and Custom Post Type UI
The latest version of plugin not working, there is no drag and drop functionality on pages or taxonomies even if are selected on plugin settings page? Why cant use the plugin?
]]>Hello,
Love your plugin, thanks for the recent security fixes!
I noticed today that there is a line of code that checks for $_GET[‘orderby’] in a get_posts hook, and it is affecting my blocks’ output in the Gutenberg editor when editing a single page
I imagine this is unexpected behaviour, since your plugin should not be affecting anything outside of the listing of related post types, but this is not in the list page, it is in an edit page.
I have created a Pull Request that shouold address this, can you please review the one line change at your earliest convenience, and roll it out in your next release (or something similar to address the issue)?
Thanks so much in advance for your help on this, keep up the great work!
]]>Hello,
Great plugin – very light weight and easy to use. Thank you for making this available.
However, today I installed the current version (3.1.5) on a fresh installation of WordPress and found that CSS and JS files were not loading. After reviewing GitHub I found the issue regarding “There’s a duplication of the word “hicpo” in “hicpo_load_script_css” capability name.” Issue Link.
The hicpo_add_capabilities() function (line 1096 of intuitive-custom-post-order.php) currently shows for administrators:
$administrator->add_cap( ‘hicpo_hicpo_load_script_css’ );
For me this prevents the plugins CSS/JS from loading and breaks the ability to sort. Once I change to:
$administrator->add_cap( ‘hicpo_load_script_css’ );
Everything works great. I believe this will be the same for editors on line 1107.
Thanks again – I look forward to an update.
]]>I have noticed that because of this plugin the breadcrumbs always skip a category. What it should be:
Home / Luggage boxes / Roof box – Roof box / Menabo Marathon M 400
With this plugin it appears as
Home / Luggage Boxes / Menabo Marathon M 400
It is something important since this is creating duplicate urls and I am being penalized by Google Search Console Does anyone know why this could affect this?
]]>Hi
Intuitive Custom Post Order <= 3.1.4.1 – Authenticated (Admin+) SQL Injection
Can we expect a fix for this?
Hi,
Is it compatible with multisite?
]]>The Defender plugin from WPMU Dev found this about your plugin:
WordPress Intuitive Custom Post Order plugin <= 3.1.4.1 - Authenticated (Admin+) SQL Injection vulnerability
-Vulnerability type: SQL Injection
Any idea when this will be addressed?
]]>Howdy,
This was working flawlessly for our client, up until he called me today saying he couldn’t drag the order of the posts any more. When he hovers over a post title the mouse cursor doesn’t change to indicate that it’s draggable.
I checked and he is correct. The only way to make it work for him was to change his role to admin. But that’s not a real solution.
As mentioned this never used to be a problem, so it’s odd that it now is. FYI we’ve made no changes to the website or added any new plugins. All plugins are up to date. I checked his role privileges and (using the User Role Manager plugin) and there doesn’t appear to be any options related to Intuitive Custom Post Order.
Have you guys accidentally introduced a bug?
]]>Hi,
Just a question about this plugin and Ajax queries in frontend.
I’m currently using a competitor plugin, Post Types Order (PTO), to get a custom order in a Posts grid set to main query in CPT/CT Archives.
i’m also filtering the grid using the WP Gridbuilder plugin, which only uses Ajax for all: Taxonomy filters, pagination…
And this is where trouble begins:
– Custom order is respected on first page load
– It’s not after filtering with the WPGB pagination module for instance
– It’s respected again after manually reloading the paginated page in the browser
It seems that PTO doesn’t use menu_order, hence cannot work with WPGB.
So, should i try my luck with Intuitive Custom Post Order to replace PTO, is it Ajax compliant in frontend?
Thanks for the hints.
]]>Intuitive Custom Post Order ordering is not getting saved. As soon as we refresh the page the ordering resets. We are using it on a custom post type.
]]>I’m using FSE and therefor using the Query Loop Block in the Block Editor. But inside the Block Editor the order of the Custom Post Order is not used. How can I resolve this?
]]>Hi!
We have a situation where we need to use WordPress default sort for the search result list (intead of the plugins one).
I would like to inquire if it’s possible to disable the default sorting of the plugin specifically for the search result listing and use WP’s default.
Thank you!
The plugin hooks into the get_terms_orderby
filter using the hicpo_get_terms_orderby
function. In this function, the first line is if ( is_admin() ) return $orderby;
. This prevents the terms from showing in the customized order in the admin listing. If I change the first line to if ( is_admin() ) return 't.term_order';
then it works OK. What is the reason for not showing terms in the custom order in the admin area?
I was using this plugin on one custom post type. When I uninstalled the plugin, my menu disappeared from my site. I could not add or edit menus anymore. When I added the plugin back (deactivated), my menus started working again..
]]>Hello,
Looks like the Shop manager user role cannot order the WooCommerce products. How can we add this capability? Please reply.
Great, simple lightweight plugin, been using it for many years now. thx!
]]>To hijiri,
I found 2 places where the vulnerability could come from. These 2 blocks where added since version 3.1.3
line 390 => // same number check
line 458 => // same number check
Can you please fix this because I can’t find another plugin that works as good as yours. Maybe I can pay for your work. Let me know.
]]>Hi and thanks a lot for your plugin ;o)
Do you know that ?
“WordPress Intuitive Custom Post Order Plugin <= 3.1.4.1 is vulnerable to SQL Injection”
On Patchstack:
]]>Hello,
When this plugin is active and used for a taxonomy, ordering via get_terms doesn’t work. Whatever parameter I use, the order is still the one created in admin area.
Is there a way, how to change this?
Thanks
Petr
In Safari 16.3, the drag and drop feature is no more working.
]]>Hi,
I’m using Intuitive Custom Post Order to order my posts. But when I use List category posts then the order is ignored. Can this be fixed somehow?
Thanks in advance,
Filips
Hi,
I have the plugin iThemes security Pro and after installing your plugin: Intuitive Custom Post Order it checked my site and came up with this waring: WordPress Intuitive Custom Post Order Plugin <= 3.1.4.1 is vulnerable to SQL Injection
Can you please fix this?
Thanks in advance,
Boki
Where do I add this code to allow the plugin to work?
]]>Hi,
When this plugin has been removed from the official repository I have created my own version which patches known security issues and also one (not critical as previous ones) which is still not fixed in v.3.1.4.1 – where can I send my code with these patches? As I suppose sharing them publicly is not a good idea ??
]]>Hi,
We have a similar issue to a ticket that was raised very recently. Since updating the plugin to v3.1.4 it breaks our site. We have reverted back to v3.1.3 for now.
Our site is essentially a Brand Hub that has multiple user roles available. We have; Administrator, Brand Hub Admin, Brand Hub Editor, Hub User, Pending Hub User and Brand Hub User Restricted.
Here is the error we’re seeing:
An error of type E_ERROR was caused in line 942 of the file /nas/content/live/brandabsprod/wp-content/plugins/intuitive-custom-post-order/intuitive-custom-post-order.php. Error message: Uncaught Error: Call to a member function add_cap() on null in /nas/content/live/brandabsprod/wp-content/plugins/intuitive-custom-post-order/intuitive-custom-post-order.php:942
Stack trace:
0 /nas/content/live/brandabsprod/wp-includes/class-wp-hook.php(308): Hicpo->hicpo_add_capabilities(”)
1 /nas/content/live/brandabsprod/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)
2 /nas/content/live/brandabsprod/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
3 /nas/content/live/brandabsprod/wp-admin/admin.php(175): do_action(‘admin_init’)
4 /nas/content/live/brandabsprod/wp-admin/index.php(10): require_once(‘/nas/content/li…’)
5 {main}
thrown
The user roles are baked into website we have developed, we haven’t created them using a plugin. Is this is a bug that needs fixing in your next release?
]]>