OlegD
Forum Replies Created
-
To make categories and tags appear in the Gutenberg sidebar again, I had to use the legacy EM filters for taxonomies and force
show_in_rest:/**
* Expose EM taxonomies to REST so they show in Gutenberg sidebar
*/
function enable_sidebar_panels( $args ) {
$args['show_in_rest'] = true;
return $args;
}
add_filter( 'em_cpt_categories', 'enable_sidebar_panels', 1 );
add_filter( 'em_cpt_tags', 'enable_sidebar_panels', 1 );This doesn’t look like a proper fix:
- it relies on legacy names: em_cpt_categories & em_cpt_tags;
- ideally, EM should register its taxonomies with
show_in_rest => true(or provide an official filter for this).
If there’s a recommended/official way to enable categories/tags in Gutenberg for EM 7.x, I’d love to switch to it.
Honestly, it’s gotten worse. Previously (before version 7.x) this workaround worked perfectly, but now it doesn’t work at all. I can’t get either tags or categories to appear in the Gutenberg editor. Very disappointing
1. Events > Settings > Formatting > Events
I’ve reduced single event page to the #_EVENTNOTES only, it doesn’t help
2. I’ve disabled all plugins except EM – doesn’t work as well 🙁
Thanks, but I’m a bit surprised. I never saw this behavior before and trying to figure out what has been changed, when, and why. Did u change something in EM or it is caused by some changes on the WP side?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] {has_spaces}Nope, I just double-checked, but got the same issue – REGISTER appears near the every event within the list.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] {has_spaces}EM version is 5.6.6.1
Events/Settings/Formatting/Events/Events Page
Default event list format:
... <td> #_EVENTLINK {has_spaces}<sup><span class="uk-text-success">[REGISTER]</span></sup>{/has_spaces} {has_location}<br/><i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>{/has_location} </td> ...