kpoelhekke
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang Theme Strings] Admin language problemSame here, v4 seems unusable. $wp_locale is mostly in English instead of Dutch, and the back-end is half English, half Dutch. I’ve reverted back to 3.5 and everything works fine.
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPMLNevermind, works like a charm! My server was behind a login so Mollie couldn’t reach it.
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPMLI have this same problem using Polylang. I’ve added Olaf’s filters and that seems to work. So the user gets redirected properly now. Only the status of the order is not set. So it never gets the status completed or cancelled. I cannot figure out how to fix this. Could you please help me out? And tell me where I can start looking.
Forum: Plugins
In reply to: [Polylang] Editor role only sees default language string translationsHi Chouby,
Thanks for your reply. I feel so stupid. It was indeed the option in the languages menu. Love your plugin by the way. Best plugin i found in the last year!
Cheers,
Koen
Forum: Plugins
In reply to: [Date and Time Picker Field] Field values do not showSame problem here ??
Forum: Fixing WordPress
In reply to: Make default post type hierarchicalThanks peter! I guess i will use that plugin then ?? Great help..
Forum: Fixing WordPress
In reply to: Make default post type hierarchicalThanks for the answer peter,
With hierarchical i mean that posts can be sorted.. For eg custom fieds/taxonomies you can make them hierarchical:
<?php register_taxonomy('genre',array('book'), array( 'hierarchical' => true, // this makes it hierarchical in the UI 'labels' => $labels, 'show_ui' => true, 'query_var' => true, 'rewrite' => array( 'hierarchical' => true ), // this makes hierarchical URLs ));
I have a plugin that lets you drag and drop hierarchical post types in your preferred order.. I am wondering if this is possible for the default post type also.. ??