Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Frontend database configHi,
the faq (first entry) explains the location of the form.php file, but since you’re new in wp you’r falling into the trap of many others: you’re changing something inside the plugin dir. This is not recommended, as upon the next plugin update, you’ll lose your changes.
I’ve added this to the first FAQ entry:If you want to change the layout (the default most probably won't suit you), copy this file in e.g. WP UPLOAD DIR/events-made-easy-frontend-submit/ and change the content there. Don't change the default file in the templates subdir, it will get overwritten upon the next plugin update.Concerning your second question: EME works with templates, but those are not files but content you create in the “Templates” submeny of EME itself. Once you’ve created the template, you can then take the template id and use that as a parameter for [eme_events]. E.g.: [eme_events template_id=3] . The doc on eme_events contains all info on the parameters and examples too.
Forum: Plugins
In reply to: [Events Made Easy] Frontend database config1: read the first FAQ answer “How/where do I change the form layout?”
2: Read up on the EME usage: https://www.e-dynamics.be/wordpress/category/documentation/3-installation-and-usage/ ==> use [eme_events] on a normal wp page with custom created template that contains the layout you want per event.
See https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_events/ and for the placeholders you can use in the templates for events: https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-2-events/Forum: Plugins
In reply to: [Events Made Easy] Frontend database configI’m not sure I understand what you mean with “my database isn’t configured”. EMEFS uses the regular EME database tables, nothing extra.
For EMEFS settings: go in your wordpress Settings menu and select the submenu “EME Frontend Submit”.
For EMEFS doc: read the FAQ at https://wordpress.org/plugins/events-made-easy-frontend-submit/#descriptionForum: Plugins
In reply to: [Events Made Easy] Form fields readonlyNo, there is not. EME links a rsvp to the wp user if logged in, so the name is important too.
Forum: Plugins
In reply to: [Events Made Easy] Form fields readonlySome fields are read-only when logged in, because then that info is taken from your WP profile (name/email for example).
Forum: Plugins
In reply to: [Events Made Easy] Cancel event processJust “Trash” the event using the mass-action dropdown menu in the list of events, the bookings will get cancelled and each booking will get the cancel email as usual (if you select mails to be sent when trashing the event).
Forum: Plugins
In reply to: [Events Made Easy] [eme_mybookings] usage[eme_mybookings] already loops for you. It uses a template for list header, list entry, list footer. See:
https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_mybookings/
(template_id, template_id_header, template_id_footer)
Forum: Plugins
In reply to: [Events Made Easy] Set default settings for discountsSorry, but that’s currently not possible. The next version will have a filter you can hook into just before inserting discounts in the db, so you can then change discount properties to your liking.
Forum: Plugins
In reply to: [Events Made Easy] CheckboxWould you mind summarizing your solution? Maybe it is something that I can then implement as an option to EME?
Forum: Plugins
In reply to: [Events Made Easy] post_type ‘event’Indeed, events are not posts and EME knows nothing about the post type ‘event’.
Forum: Plugins
In reply to: [Events Made Easy] CheckboxI just wanted to check back on this to see if you got it resolved?
Forum: Plugins
In reply to: [Events Made Easy] Excerpt formatI added that info to the doc too.
Forum: Plugins
In reply to: [Events Made Easy] Excerpt formatOk, I verified the code. The “problem” with the breaks disappearing is when you don’t use the more-tag to indicate the end of the excerpt:
If there’s a more-tag, that gets used as excerpt.
If there’s no more-tag, the first x characters get used (default 55) but I use the wordpress function wp_trim_words, that also replaces all returns by a space (and removes all html tags).So, in short: if you want your excerpt to look the way you want it, you need to use the more-tag.
Forum: Plugins
In reply to: [Events Made Easy] Excerpt formatThe version has been released already. Is it not working as expected? It might be that wordpress already removed the linebreaks first (before I pass over it with the nl2br function I created).
Forum: Plugins
In reply to: [Events Made Easy] CheckboxThis might help:
https://davidwalsh.name/add-custom-css-wordpress-admin