nsp-code
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Types Order] WPMLYou should switch the language to another, then the posts will show up.
Remember that if you own the advanced version you can always get fast support at [email protected]Forum: Plugins
In reply to: [Post Types Order] WPMLThe Advanced Post Types Order works with WPML, you will be able to set order list for all site languages.
Related topic at http://ww.wp.xz.cn/support/topic/plugin-post-types-order-problem-with-wpml?replies=5Forum: Plugins
In reply to: [Post Types Order] fatal errorThis is a memory limitation when your site contain thousand of posts. When the plugin try to build the re-order interface, querying the list full list will require more memory.
You should get in touch with the server admin and ask how to increase the allocated memory usage, increasing that to 164Mb or maybe 256Mb will make the fix.
As alternative, you can try the Advanced Post Types Order this contain a different method/code of building the lists which can process like 30-40k on such memory allocation without problem. Related help topic can be found at
http://ww.wp.xz.cn/support/topic/re-order-not-showing-posts-under-posts-section?replies=4Forum: Plugins
In reply to: [Post Types Order] PHP Strict StandardsThere will be a new version out on this Friday or possible at the end of next week.
Thanks
Forum: Plugins
In reply to: [Post Types Order] possible incompatibility with wp-migrate-db-pro pluginThe plugin shouldn’t affect the other code except sort update, including wp-migrate-db-pro You should get in touch with the plugin developer to check on the way his code retrieve the license, it must be a unreliable way.
If he can’t find the problem, i can give it a try.It should work fine, i don’t see a reason for why it may not work. Try using another plugin as “Custom Taxonomies” may contain a bug.
Forum: Plugins
In reply to: [Post Types Order] Plugin is not Reordering posts on the Index pageUse Autosort ON instead On/Custom as it will use the query orderby value instead. Also you should create the order through Archive selection.
Forum: Plugins
In reply to: [Post Types Order] Filter to remove post ordering on some custom queriesThe code will also work with the advanced version.
Thanks
Forum: Plugins
In reply to: [Post Types Order] Filter to remove post ordering on some custom queriesHi
The autosort is saved within an option, you can use something like this:$options = get_option(‘cpto_options’);
//if auto sort
if ($options[‘autosort’] == “1”)
{
…
}Forum: Plugins
In reply to: [Post Types Order] Filter to remove post ordering on some custom queriesHi,
You had created a very nice theme, congratulation.
The way you had it solved looks good. As alternative if the plugin autosort is turned off, you can specify the ‘orderby’ => ‘menu_order’ within queries where the plugin should apply the sort.Thanks
Forum: Plugins
In reply to: [Post Types Order] e.ui.isOverAxis is not a functionThis error is not caused by Post Types Order, please check with other plugins. De-activate those one by one to identify the exact problem or see the full JavaScript error message.
Forum: Plugins
In reply to: [Post Types Order] Woocommerce related products conflictHi
I mean this is a plugin option, go to setting plugin area and chagge the autosort to OFF. Then update query to include ‘orderby’ => ‘menu_order’ . I can’t say where to change as it depend on your theme code.
Currently only the Advanced Post Types Order plugin allow to create sort for specific category (taxonomy).Forum: Plugins
In reply to: [Post Types Order] Plugin is not Reordering posts on the Index pageDo you use a custom query to get the posts? Also did you included the ‘orderby’ => ‘menu_order’ ?
Forum: Plugins
In reply to: [Post Types Order] Advance Post Re-order not workingWhen you refresh the page, you mean the admin sort interface area, is that correct? Something overwrite the query sort filter, can you try and disable other plugins one by one?
If none of above works, please contact us with a login to your development site and we will check into this.
ThanksForum: Plugins
In reply to: [Post Types Order] Woocommerce related products conflictHi
You should turn off the autosort plugin option and change the queries to include ‘orderby’ => ‘menu_order’ where the sort need to apply.
Thanks