Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Additional ChargesYou have #_EVENTPRICE (and extras), and for chosen field values #_FIELD{xx}
or #_FIELDVALUE{xx} (depending if you want to show the tag or the value for multl-fields).
Although #_FIELD or #_FIELDVALUE probably doesn’t get converted to a price notation by default (will be fixed)Forum: Plugins
In reply to: [Events Made Easy] Additional ChargesSure. Use a custom field inside your RSVP form. And for that custom field, indicate it is a price field, then the value of that field will be added to the booking cost (for dropdown fields, add multiple values).
Forum: Plugins
In reply to: [Events Made Easy] Draft Event – where are they?Draft events can be found in the EME backend, submenu events.
Forum: Plugins
In reply to: [Events Made Easy] Add memberThe example I gave back works just fine to import. I can’t help you to generate a CSV file with correct quotes though, but: libreoffice can help you (it messes around less than Excel).
Also, as indicated in the doc on how to import members, there are 5 fields required: “lastname”,”firstname”,”email”,”membership” and “start_date”. If those are not present, nothing will happen. But they were present in your initial example, so your data was ok.When adding a member manually, the initial state is “pending”. If you want to change that off the bat, change “Member status calculated automatically” to “no”, set the state to what you want and then change it back tio “yes”. Maybe I should leave that field changeable all the time (I forgot why I linked those 2 fields together in the first place) … something I’ll change for the next version.
The part where you can search for an existing person is autocomplete, so just start typing a person name where it says “Start typing a name” and it should find the person of choice.Forum: Plugins
In reply to: [Events Made Easy] Add memberIn your example you’re mixing several style of quotes. I don’t know if that is because you don’t indicate it as code, but make sure you only use straight quotes, not slanted ones.
Next to that, your date format is not as required, it should be YYYY-MM-DD format.
This should work"lastname","firstname","Email","Phone","address1","address2","city","state","zip","country","massmail","Membership","status","status_automatic","paid","start_date","end_date","creation_date" "Horgkety","Sophy","Sophy@doosy.com","","","","","","","","0","Group Annual Membership","active","1","1","2021-01-07","2022-01-07","2022-01-22"Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Front end submit form not showingThe plugin has a setting that defines which wordpress capability you need to be allowed to post new events (for logged in users). Make sure your logged in user has that capability (or adjust as you see fit).
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Add Memberclosing this, replying in the other forum
Forum: Plugins
In reply to: [Events Made Easy] minimum attendeesFeel free to comment on that feature request. Currently it is low on my list 🙂
Forum: Plugins
In reply to: [Events Made Easy] Event discription examplesorry, but that is currently not possible. The event description field can’t have a “default” text in it for now.
Forum: Plugins
In reply to: [Events Made Easy] Display text if 1 or more custom fields contains a valueno reply, considering solved.
Forum: Plugins
In reply to: [Events Made Easy] Display text if 1 or more custom fields contains a valueThe first part is better rewritten as (use ESC for the tag-element and is_empty=0 is default):
[eme_if tag='#ESC_FIELD{KEYWORD1}']<span class="kw1">Keyword1: #_FIELD{KEYWORD1}</span>[/eme_if] [eme_if tag='#ESC_FIELD{KEYWORD2}']<span class="kw2">Keyword2: #_FIELD{KEYWORD2}</span>[/eme_if] [eme_if tag='#ESC_FIELD{KEYWORD3}']<span class="kw3">Keyword3: #_FIELD{KEYWORD3}</span>[/eme_if]Now the second part: are you sure when you save that template wordpress doesn’t filter out unknown span-attributes? If they are present, also use ESC there for the tag-value.
Forum: Plugins
In reply to: [Events Made Easy] attributes removed from when saving mail templatesWell, EME can do its own queuing and mail tracking … even when using sendgrid as mailserver provider.
Forum: Plugins
In reply to: [Events Made Easy] attributes removed from when saving mail templatesGo in EME settings, tab “Other” and add your custom html-tag to the list of “Extra html tags”. E.g. for an a-tag with the clicktracking attribute, add a line
a,clicktracking
so wordpress won’t remove it upon sanitizing. For the mail templates, I think things can be a little more “loosened” in the mail content, I’ll see what I can do for the next version there.Forum: Plugins
In reply to: [Events Made Easy] Event page HTML title tag not showingOk, if it is yoast, check out the FAQ: https://www.e-dynamics.be/wordpress/faq/ (search for Yoast).
Edit: specifically theadd_filter( 'wpseo_title', 'eme_html_title' );line might help …- This reply was modified 4 years, 4 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] Event page HTML title tag not showingI tried the twenty-one theme: no issue, the title-tag is correctly rendered (with the default EME settings even).
I then installed the twentig plugin: still all ok. I don’t even find any code where that plugin would interfere, so it seems an ok plugin. I could even demonstrate it on my public site if you’d like 🙂
Is there some filter you have in place?Also: is the setting “Single event html title format” filled out? The default is “#_EVENTNAME” and in fact is the format of the html title for a single event.
- This reply was modified 4 years, 4 months ago by Franky.