nsp-code
Forum Replies Created
-
Hi Agustin,
We didn’t run into intensive testings along with the WPML, we did that for the Advanced Taxonomy Terms Order which works fine.
However as the free plugin contain a different code structure, it will require a different approach to make it fully compatible with WPML, we will check into this on a later update. On the other hand some people are able to use the free plugin along with WPML without any problem, possible there may be a conjunction of different plugins which make this to do not work.Thanks
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] fatal errorThe plugin shouldn’t really be a problem for memory usage, since it’s just manipulate the sql queries and not load additional data. There must be a problem of different nature, did you tried to de-activate some of other plugins? How many posts/custom post types currently your site held?
What’s beyond of 128Mb memory usage, indeed it’s getting to much. On the other hand i know lot’s of people having such issues with godaddy servers environment.Forum: Plugins
In reply to: [Post Types Order] Problem showing imagesDid you tried to check into the code where it retrieve the images?
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Working with PHP (Custom Themes)I think get_terms() is what you need and should be enough to achieve any results if you have a basic php/wordpress programming knowledge. In case of further help, just ask.
Forum: Plugins
In reply to: [Post Types Order] ordering protfoliosHi,
I see what you mean, you need to order the custom objects (like posts) within a taxonomy term (like category). The free version does not support this feature, you can re-order only an archive (all objects) order. However you can consider to upgrade to Advanced Post Types Order which does what you need.Thanks
Forum: Plugins
In reply to: [Post Types Order] Problem showing imagesHi,
This shouldn’t interfere with with images, but you can try to turn off the autosort and see if there is any difference. If this works, you will need to specify a ‘orderby’ => ‘menu_order’ within the query arguments where you need to use a custom order.
Otherwise i presume you should just check the exact code where it retrieve the images and see what’s going on there.Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Not working with wp_get_post_termsHello,
Sorry but it will not work with wp_get_post_terms as it will become ambigous. Since a post can contain terms from different taxonomies, there is no criteria to establish a term order prior another. You should separately retrieve the terms order using get_terms, then apply that to the wp_get_post_terms() results accordingly to your algorithm.
Hope it make sense.Forum: Plugins
In reply to: [Post Types Order] FullThrottle Calendar Plugin ConflictPlease get in touch with us through contact at http://www.nsp-code.com
This should work fine, as the Advanced Post Types Order is an extension for the free plugin. Is the auto-sort turned on? Also make sure you makre the re-order within the correct place, archive for global post type ordering or certain term when a taxonomy term objects order is required.
If you still have problems, you should get in touch through contact at http://www.nsp-code.com for a fast support, someone will take care of this issue for you.Thanks
Forum: Plugins
In reply to: [Post Types Order] Post titles disappeared after domain changeIf it’s a clone, there is no reason for having such issue. I believe there is just a css problem, and the text in fact appear on a different color, as the gray bars are actually created from the queried posts.
Or maybe there is a problem with that particular server.Forum: Plugins
In reply to: [Post Types Order] Enable ordering for specific post types?This is currently available only for advanced version.
Forum: Plugins
In reply to: [Post Types Order] post type order conflict random images in sidebarThis has been discussed before, please check with this post http://ww.wp.xz.cn/support/topic/post-type-order-stops-random-header-image-showing?replies=10#post-3962834
So you will need to turn off the autosort plugin option, then update the queries to use the custom defined order using ‘orderby’ => ‘menu_order’Forum: Plugins
In reply to: [Post Types Order] Post Type Order Stops Random Header Image ShowingYep, keith0__0 is right, you should just search for your theme for new Wp_Query($argv) and/or get_posts() then modify/add ‘orderby’ => ‘menu_order’. Turn OFF the autosort (plugin settings area) and it will use the custom order just in the place you did the update.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Not showing All My TaxonomiesCurrently this free version support only hierarchical taxonomies, so i think you could switch to hierarchical unless you need to keep your taxonomies as is.
Forum: Plugins
In reply to: [Post Types Order] Hierarchical post typeThe plugin can handle only non-hierarchical custom post types (like posts).