nsp-code
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Types Order] How to limit number of posts?Hi,
Unfortunate this feature is not yet available, we are working for this to be included hopefully in the next version.
ThanksForum: Reviews
In reply to: [Post Types Order] Excellent pluginThank you for your feedback.
We are interested in your experience with our plugin along with Pagelines, can you share on the exact problem you encounter?Thanks
You need to identify the template file which display the pages required to be sorted alphabetically. However a basic php knowledge is need for that, but you can just give it a try. As alternative, you may consider to ask a php coder to check into this, should be fast.
Forum: Plugins
In reply to: [Post Types Order] Curious Error after moving siteHello,
Possible that when uploaded the WordPress files, some files has changed / got upload error. Can you try to re-install WordPress from Update area? I suppose the JavaScript errors appear even if the post types order plugin is de-activated.You should turn off the Autosort option, then include the ‘orderby’ => ‘menu_order’ within the query you need to sort per your custom list.
Or in case you use the advanced version, you can uncheck the pages from the post types list to ignore or use ‘force_no_custom_order’ within the pages query as it’s show on this example at http://www.nsp-code.com/advanced-post-types-order-api/sample-usage/Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] How about subcategories?All details can be found at http://www.nsp-code.com/premium-plugins/wordpress-plugins/advanced-taxonomy-terms-order/
Forum: Plugins
In reply to: [Post Types Order] Retrieving a custom field to display next to the nameHi
You can try to edit the line 333 on post-types-order.php file:$output .= $indent . '<li id="item_'.$page->ID.'"><span>'.apply_filters( 'the_title', $page->post_title, $page->ID ).'</span>';to
$output .= $indent . '<li id="item_'.$page->ID.'"><span>'.apply_filters( 'the_title', $page->post_title, $page->ID ).' - ' . $custom_field_value .'</span>';Or if you own the Advanced Post Types Order plugin you can use this easy example http://www.nsp-code.com/advanced-post-types-order-api/filter-post-types-items-additional-informations/
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] How about subcategories?Hi
Unfortunate this feature is implemented only in the advanced version. Possible to be included in the free plugin at a later date.Thanks.
Forum: Plugins
In reply to: [Post Types Order] Not workinHi
The plugin really work fine with all WordPress version. The reason for why you see this message is caused by a JavaScript error caused by another plugin / theme, or by the jQuery version you had en-queued, or maybe a duplicate of it with different versions.
Check within the output html code if you have enqueued the jQuery library twice.Forum: Plugins
In reply to: [Post Types Order] Reorder not reflected in taxonomyHi jimmywags
Please always contact us through http://www.nsp-code.com/contact-us/ for a fast reply, as this board is checked from time to time.
Try to add
‘suppress_filters’ => false,
‘orderby’ => ‘menu_order’
within your $args arrayOr try to use a custom query as is show in this API examples http://www.nsp-code.com/advanced-post-types-order-api/sample-usage/
Thanks
Hello
Everything will stay as is when plugin is de-activated / uninstalled.
No theme code is changed, every sort apply is done on the fly.Forum: Plugins
In reply to: [Post Types Order] Advanced Post Types Order messing up previous/next linksHi,
If you own a paid service / product please always get in touch with us for help through http://www.nsp-code.com/ for a fast response.
Meantime you can check with the API at http://www.nsp-code.com/advanced-post-types-order-api/Thanks
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] fatal errorA solution was posted on this post http://ww.wp.xz.cn/support/topic/re-order-not-showing-posts-under-posts-section?replies=4
Keep in mind that it depends on the number of your site posts, this should really not be a problem for a regular site.Forum: Plugins
In reply to: [Post Types Order] Fatal error activation pluginJust to make clear to others in case they experience similar issue, your problem was a JavaScript error caused by another code (plugin or theme)
Forum: Plugins
In reply to: [Post Types Order] Fatal error activation pluginIf you can’t drag and drop, there must be a javascript conflict/error, can you check on your browser console (or firebug for firefox)