geniusphil
Forum Replies Created
-
Is the area you are concerned about a footer or an area that is wider than it is tall? I could see this being useful in that circumstance.
I think this relates to when the view is very narrow. Is that right?
I’ve made plans to show a very simple list when there is less than around 370 pixels width for the calendar as the view breaks down quite a bit at this point. This will be included in the next update. I believe this will solve your concern.There is a setting for this specific string. It’s found on the “advanced” tab when editing that field:
https://snipboard.io/kgwl14.jpgHi heatherbodlak,
Thanks for pointing this out. It is better practice to have all internal links (links that bring you to another page on the same site) do not open a new window. This will be changed in the next update.There was an update yesterday that has a patch for this. Thanks again.
Hey patrick505,
You are right, a bug was introduced recently. A fix will be available early this week. I apologize for the trouble in the meantime. Thanks for pointing this out.Thank you so much!
After giving this some thought as it may be common that people set up a separate calendar page, I’m going to add a setting to enable breadcrumbs and have it off for events by default.
I have made a note to offer better, more customizable breadcrumb support in a future update though! Look for the update later today.The settings for Yoast breadcrumbs are found under the Settings page and then “Advanced” section:
https://snipboard.io/DLy65U.jpg
Since the /agendas/ page is a custom page and not the default archive page, Yoast does not know about it through it’s breadcrumb system. There is an option to disable breadcrumbs further down the page as well.Version 1.11 should show the default calendar or event list for tag and category archives with the archive tag or category automatically filtering the events shown. I believe you just need to update an all will work properly!
Forum: Plugins
In reply to: [Event Genius - Event Management, Registration, RSVP, and Tickets] Small fontVersion 1.11 (available now) should address this issue. Let me know if anything still seems off!
Hello again,
Version 1.11 supports breadcrumbs from Yoast, AIOSEO, SEOPress, and RankMath. The breadcrumbs appear above the title as this appears to be more standard than your suggestion. Sorry for the change. I hope this helps.Thank you so much for the review here and the video on YouTube! That’s so nice!
And fair points regarding the improvements. This will be addressed in future updates.No problem!
I’ll mention that reviews help spread the word about the plugin and the support we offer. You can leave one here if you’d like:
https://wordpress.org/support/plugin/event-genius/reviews/
Please continue to ask questions either way. I am always happy to help 🙂Hello again Jason,
I have found a solution! It looks like one of the custom post types that SureDash reserves is the /event/ slug which is also what Event Genius uses by default. We have a setting on the Events tab to change it, however it sounds like your events have been running and possibly advertised for awhile so it may not make sense to break existing links.
Instead, you can use a simple PHP snippet to change the slug for SureDash. You can apply it using a custom snippet plugin like WPCode. Here is the snippet:add_filter(
'suredash_community_content_post_event_slug',
static function ( $slug ) {
return 'community-event';
}
);This will force SureDash to use community-event as the slug. I tested this myself and it seems to solve the problem.