Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] no datepickerMaybe another reason: EMEFS uses the openstreetmap api (and thus loads some javascript files to do so). There might be an issue (I need to test this) if you have disabled the map-option in EMEFS. Can you tell me the value of that option?
Forum: Plugins
In reply to: [Events Made Easy] Error in logfileIf that’s only in your logfile you can ignore it. It happened during plugin update and there a column got renamed (but only if that column was already there, maybe I should’ve checked for that too …).
Forum: Plugins
In reply to: [Events Made Easy] Worried about updateYou don’t need to backup your entire site but only the database (which is recommended by WordPress before any update).
The EME update itself should be just fine.Forum: Plugins
In reply to: [Events Made Easy] Worried about updateOk, did some code review and I built in some small improv (to say that the person info is taken for lastname/firstname if the one from the wp profile is empty).
These 2 changes will help:
https://plugins.trac.wordpress.org/changeset/2387233/
https://plugins.trac.wordpress.org/changeset/2387234/I’d say: test this out in a test env first.
Also: it won’t happen for newer persons, as there the info from the wp profile is already copied more strictly when needed.Forum: Plugins
In reply to: [Events Made Easy] Navigation in Event and Events pagesAll 3 choices are viable to me (of course it depends on what you want, but I’d say a “View all Events” is more interesting). But indeed, you need to put the link on it yourself. Putting it in template (to be used as single event format template that you can reuse in all events) seems the best way to me.
Forum: Plugins
In reply to: [Events Made Easy] This plugin and SEO FrameworkBy the looks of it, I’d say that the latter is more efficient, but you can always add php timings at the beginning and at the end of the function to see what is more efficient in timing to be sure 🙂
Forum: Plugins
In reply to: [Events Made Easy] This plugin and SEO FrameworkThanks, I updated the faq. Maybe it would work like this too?
add_filter( 'the_seo_framework_query_supports_seo', function( $supported ) { if (eme_is_single_event_page() || eme_is_single_location_page()) { $supported = false; } return $supported; } );But I’ll leave that up to you for testing 🙂
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] no translationEMEFS uses the wordpress translation path, see wp-content/languages/plugins/
For correct translation files, please contribute to the translation here:
https://translate.wordpress.org/projects/wp-plugins/events-made-easy-frontend-submit/Currently I didn’t load the own translation files anymore, but I think I’ll re-add that. This might do that trick:
https://plugins.trac.wordpress.org/changeset/2386615/
- This reply was modified 5 years, 8 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] no datepickerYour theme is causing the layout to be rendered before the full page is loaded:
Layout was forced before the page was fully loaded. If stylesheets are not yet loaded this may cause a flash of unstyled content.
Try using the default theme first.
Forum: Plugins
In reply to: [Events Made Easy] This plugin and SEO FrameworkSorry, then it is a question for that plugin I suppose … you did use the complete example I hope? I renamed the function reference so …
- This reply was modified 5 years, 8 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] Worried about updateThat is a good question. I’ll see how wordpress handles this and how to get a better take on it (maybe some sync operation between the linked persons and their wp counterparts).
Forum: Plugins
In reply to: [Events Made Easy] Can’t edit memberIs your membership definition complete? The form template for new members should contain those placeholders.
Forum: Plugins
In reply to: [Events Made Easy] Navigation in Event and Events pagesEither use the shortcode eme_events to show all events with optional use of the paging option, or use the calendar (small in widget or big version). See the documentation:
https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_events/
When in an event, there’s no “previous” or “next” event on its own, but even then you can show a list of e.g. all events in the same location (by using the eme_events shortcode in the single event format with the location_id param as explained in the documentation).Forum: Plugins
In reply to: [Events Made Easy] This plugin and SEO FrameworkI think the seo framework filter to bypass is the_seo_framework_description_output. I’ll add that to the faq too
Edit: FAQ adapted (hope it works 🙂 )- This reply was modified 5 years, 8 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] This plugin and SEO FrameworkEME overrides that description per event with its own meta-tag. So maybe you should try to make sure the SEO framework doesn’t interfere there …