tibitabo
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
I’d also love to get this to work! 🙂
OK, I discovered that saving to custom taxonomies works when Populate with a taxonomy is checked.
But in this case the entered term is added to the taxonomy again and again, everytime I submit a post, and these terms will then show up in the select-dropdown.
How can I solve this?! 🙁
Forum: Fixing WordPress
In reply to: Hide sidebar if there are no posts in taxonomyThanks, this seems to be working! 🙂
Is this option recommendable performance-wise? I’m pretty new to WordPress, so I don’t know about best practices yet.
Thanks again!
HeikoFound it in /wp-content/plugins/query-multiple-taxonomies/templates! 🙂
You can add the following code at the end of plugin-settings and then choose EURO from the UI.
/** * Adds new currency to admin options * @param array $fields admin options */ function wpufe_currency_filter( $fields ) { foreach( $fields as $key => $val ) { if( $val['name'] == 'wpuf_sub_currency' ) { $fields[$key]['options']['EUR'] = 'EURO'; } } return $fields; } add_filter( 'wpuf_build_form_args', 'wpufe_currency_filter' );
Viewing 5 replies - 1 through 5 (of 5 total)