nsp-code
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Types Order] Not workinThere must be at least a JavaScript error, try using the firebug for firefox to get the error, otherwise i can’t help.
Also try de-activating the other plugins, possible there is a problem caused by one of those.Forum: Plugins
In reply to: [Post Types Order] Fatal error activation pluginIt appear the plugin is already embed into your theme. You can comment out the line where it loads the post-types-order.php file, doing a search on your files should reveal the exact place where that is.
Forum: Plugins
In reply to: [Post Types Order] Not workinIt should work, however do you see an error message?
Forum: Plugins
In reply to: [Post Types Order] Not workinWhich is the exact problem you encounter?
Using the get_terms will not output anything as it will return a value and not an output. I suggest so you check with http://codex.ww.wp.xz.cn/Function_Reference/get_terms on the way this WordPress function work.
Here’s a fast example on a simple usage:$argv = array(
‘orderby’ => ‘term_order’,
‘hide_empty’ => false
);
$found_terms = get_terms(‘the_category’, $argv);
if ( count($found_terms) > 0 ){
echo “- “;
- “.$term->name . “
foreach ( $terms as $term ) {
echo ”“;
}
echo ““;
}Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Japanese translation and a patchHi Jotaki
Many thanks for the Japanese translation, i will include that within the next release. Also thanks for the head-up regarding the load_plugin_textdomain issue.Thanks
Forum: Plugins
In reply to: [Post Types Order] Re-order not showing posts under Posts sectionPossible there is a memory exhaust, 700 is not to much but if you are near the edge with the memory usage, it will make the difference.
Try to increase the allocated memory, check with this link http://codex.ww.wp.xz.cn/Editing_wp-config.php or see your hosting faq on how to do that.If you own the advanced version, just make sure you update to latest version as this part was re-created to allow to load thousand of posts.
Forum: Plugins
In reply to: [Post Types Order] Re-order not showing posts under Posts sectionPossible an error message? How many posts do you have?
Forum: Plugins
In reply to: [Post Types Order] Client Logos Not Reflecting Reorder ChangesIs the Autosort turned ON?
If no can you check your custom query use a ‘orderby’ => ‘menu_order’ paramether?Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Order post in selected category.I think you need a different tool, like Post Types Order http://ww.wp.xz.cn/extend/plugins/post-types-order/ or the Advanced Post Types Order http://www.nsp-code.com/premium-plugins/wordpress-plugins/advanced-post-types-order/ in case you need to re-order custom post types within taxonomies terms .
I confirm this works with Simple Taxonomy plugin, you just need to make sure the custom taxonomies are hierarchical.
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] fatal errorCan you get in touch with us so i can give it a check?
Forum: Plugins
In reply to: [Post Types Order] Need to show random posts But plugin is preventing itHi,
You need to turn off the Autosort or it will automatically order by menu_order, here is a link where you can find a detailed solution http://ww.wp.xz.cn/support/topic/post-type-order-stops-random-header-image-showing?replies=15
Or you can use the ‘force_no_custom_order’ as TRUE in case you use the Advanced Post Types ORderThanks
Forum: Plugins
In reply to: [Post Types Order] ASC/DESC order does not work.This should really work unless there is another query filter (plugin or theme) which change the default behavior. More details at https://codex.ww.wp.xz.cn/Class_Reference/WP_Query at ‘order’ paramether.
Forum: Plugins
In reply to: [Post Types Order] Only one category sortingThis function is currently implemented only within Advanced Post Types Order. Also a post which belong to multiple categories, can be sorted differently within each and displayed on the front side accordingly, without losing a sort list while doing an update through another.