Clement Biron
Forum Replies Created
Viewing 9 replies - 1 through 9 (of 9 total)
-
Forum: Plugins
In reply to: [Manage Privacy Options Page] issue with WP 5.3Fix fonctionnel, merci.
Forum: Plugins
In reply to: [WP Plugin Info Card] Height 100% for large displayOk thx !
Forum: Plugins
In reply to: [Polylang] Translate custom post type slugLook great, thanks !
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Allow editor to edit colorsEditor can’t access to the plugin preferences, which contain the category colors settings.
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Allow editor to edit colorsManage category colors is added by The Events Calendar Category Colors, so allow editor to edit category colors is not part of this plugin ?
I’ve to ask in The Events Calendar support ?
Thx
Forum: Plugins
In reply to: [Polylang] Translate custom post type slugOk,
Thanks for your quick reponse !
Is there a features roadmap somewhere ?+
Forum: Fixing WordPress
In reply to: Wp Pagenavi and custom post type problemPlease, i realy need help !
Forum: Fixing WordPress
In reply to: Wp Pagenavi and custom post type problemUp ??
Forum: Hacks
In reply to: Order query by meta_value with multiple custom fieldsok resolved, it’s because meta_value sql field type is longtext and i tried to order on integer value..it’s doesn’t work.you have to cast type on integer, like this :
SELECT * FROM wp_posts LEFT JOIN wp_postmeta wpostmetaOrder ON ( wp_posts.ID = wpostmetaOrder.post_id AND wpostmetaOrder.meta_key = 'order_submenuexpositions' ) LEFT JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id LEFT JOIN wp_term_relationships wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_term_taxonomy wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id) WHERE wp_postmeta.meta_key = 'display_submenuexpositions' AND wp_postmeta.meta_value = 'true' AND wp_posts.post_status = 'publish' AND wp_posts.post_type = 'post' AND wp_term_taxonomy.taxonomy = 'category' ORDER BY CAST(wpostmetaOrder.meta_value AS SIGNED) ASC,wp_postmeta.meta_value ASC
Viewing 9 replies - 1 through 9 (of 9 total)