Since the functionality of frontend submit is now integrated in the main plugin, this plugin will be discontinued. For now it works, but migrating to the newer functionality/shortcode in the main plugin is recommended. See https://github.com/liedekef/events-made-easy and https://www.e-dynamics.be/wordpress/frontend-submit/
]]>Hi Franky
I have added the following code into my form:
<fieldset id="event_attribute">
<legend><?php _e('Allianz','events-made-easy-frontend-submit'); ?></legend>
<div class="input">
<label for="AllianzKM"><?php _e('Event ist eine Allianz auf die KM','events-made-easy-frontend-submit'); ?></label>
<?php EMEFS::property('AllianzKM','binary'); ?>
<?php EMEFS::error('AllianzKM'); ?>
</div>
<div class="input">
<label for="AllianzHM"><?php _e('Event ist eine Allianz auf die HM','events-made-easy-frontend-submit'); ?></label>
<?php EMEFS::property('AllianzHM','binary'); ?>
<?php EMEFS::error('AllianzHM'); ?>
</div>
</fieldset>
Which gives me two binary selection fields with YES and NO.
I have defined two properties. AllianzKM and AllianzHM as a checkbox.
The problem now is: Using the form to create a new event, both “ticked” checkboxes are not transferred to the event properties.
What is wrong?
Best Regards Michael
]]>I have extra attributes in my events eg.
[events_if tag=’#ESC_ATT{Twitter}’] Twitter: #_ATT{Twitter} [/events_if]
This worked until recent updates using the following in my form:
<div class="input">
<label for="Twitter"><?php _e('Twitter name eg @CardiganBay if available','emefs'); ?></label><br />
<?php EMEFS::attribute('Twitter','text'); ?>
</div>
This is now no longer working – please can you tell me what I need to change. Thank you
]]>Hi,
Both below plugins are activated:
Events Made Easy
Version 2.4.32
Events Made Easy Frontend Submit
Version 1.0.83
but yet i am getting the below error in the backend :
The Events Made Easy Frontend Submit plugin is an extension to the Events Made Easy plugin, which has to be installed and activated first. The plugin has been deactivated.
What i might be doing wrong?
thank you
]]>Added [emefs_submit_event_form] in shortcode block on a page. Then try to publish. Get this message in pink on top of screen :
Publishing failed. The response is not a valid JSON response.
I am using EME ver: 2.4.32 and Frontend ver: 1.0.83?
]]>Hi,
Shortcodes don′t work anymore.
[emefs_submit_event_form template=form_de.php]
[emefs_submit_event_form]
What could be the reason?
Thx, Markus
PS
Events Made Easy Frontend Submit Version 1.0.83
Events Made Easy Version 2.3.5
]]>Events made easy frontend submit told me, that I have to install the new version and that the old version was deactivated. Now I followed the instructions on the website.
After updating “events made easy” I got the following error message:
Parse error: syntax error, unexpected ‘:’, expecting ‘)’ in?/home/customer/www/schloss-kuernbach.de/public_html/wp-content/plugins/events-made-easy/eme-filters.php?on line?245
What do I have to do to make it work again?
Best regards,
Axel Schaumann
A user of the EMEFS form on the frontend was no longer able to enter an event. The interface refused to propose the location once the first two letters had been entered.
When I checked the form.php template file, I realised that the required_field option was no longer in use. I therefore removed the required_ and left only EMEFS::field.
Once corrected, the ‘location’ field worked fine. But a new error appeared when validating the form, an error indication in red appeared when entering the date. Again, deleting required_ before field solved the problem.
If so, you’ll need to update the documentation, which still mentions the required_ option.
Maybe I do not use correctly the form ?
I have the last version of EMEFS and EME
]]>Hello Franky,
we use the EME plugin and the frontend plugin on our website. After updating both the plugin events-made-easy-frontend-submit creates an error:
Das Plugin ?Events Made Easy Frontend Submit“ ist eine Erweiterung des Plugins ?Events Made Easy“, welches zuerst installiert und aktiviert werden muss. Das Plugin wurde deaktiviert.
It means, that the plugin frontend submit is an extention of EME, which first must be installed and activated.
I have now deinstalled both plugins and reinstalled with the same error. Also I have deactivated an activated both, the error stays.
What must I do, to become the plugin frontend submit to run?
Thank you very much,
Antonio
]]>Hi Franky
Is there a possibility to change the layout of the map (leaflet).
I like to have a pure road map.
Best Regards Michael
]]>Sorry, this topic was related on the original plugin, so it was wrong here.
If possible, please delete this thread.
]]>Hi Franky
In the default form.php the code for event_category_ids is :
<?php }
if (get_option('eme_categories_enabled')) { ?>
<div class="input select">
<label for="event_category_ids"><?php _e('Select the Event Category','events-made-easy-frontend-submit'); ?> <small><?php _e('required','events-made-easy-frontend-submit'); ?></small></label><br/>
<?php EMEFS::field('event_category_ids'); ?>
<?php EMEFS::error('event_category_ids'); ?>
</div>?>
I would like to force the category, for exemple to 4, and do not give the choice on the form. As several user can use EMEF but with different form (monform.php and wishform.php that are on different pages with a shortcode with different parameters). So I think I can not use a filter. Have you a solution for that please ? If I do not put those lines in the form the category 1 is used by default. I would like to force category according the used form.
Have a nice day
Frédéric
]]>Hi Franky,
I just started using EME. Big compliment for your work so far!
For the use of my website I have 2 questions:
Hey Franky,
Working on a new site and EME implementation. My wordpress is in Dutch but the EME plugin is in English. I’m probably blind but i cannot find where to change this? Do you have a clue for me?
Grts!
Hi Franky,
I’m having a minor issue when customising the Front-End Submit form. The site is still in development so I can’t link it now.
The client has three consistent seat and pricing options/tiers for every single event, so I would like to have three separate inputs. They would then put the number of seats and the price for each option separately, instead of using the double pipes. (‘||’)
I have included the following code in the template file for the seats:
<div class="input">
<label for="event_seats(1)"><?php _e('Seats 1','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('event_seats(1)'); ?>
<?php EMEFS::error('event_seats(1)'); ?>
</div>
<div class="input">
<label for="event_seats(2)"><?php _e('Seats 2','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('event_seats(2)'); ?>
<?php EMEFS::error('event_seats(2)'); ?>
</div>
<div class="input">
<label for="event_seats(3)"><?php _e('Seats 3','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('event_seats(3)'); ?>
<?php EMEFS::error('event_seats(3)'); ?>
</div>
And then the following code for the pricing:
<div class="input">
<label for="price(1)"><?php _e('Price 1','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('price(1)'); ?>
<?php EMEFS::error('price(1)'); ?>
</div>
<div class="input">
<label for="price(2)"><?php _e('Price 2','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('price(2)'); ?>
<?php EMEFS::error('price(2)'); ?>
</div>
<div class="input">
<label for="price(3)"><?php _e('Price 3','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::field('price(3)'); ?>
<?php EMEFS::error('price(3)'); ?>
</div>
On the form, the fields show exactly as I’d like them to, but when submitting the following error is shown:
“By using #_SEATS{xx}, you are using multiple seat categories in your RSVP template, but you have not defined a price for each category in your event RSVP settings. Please correct the event RSVP settings.”
I would appreciate any assistance or insight you can offer on this.
Thanks very much for your work – it’s excellent and useful beyond words!
Thanks,
Ash.
Hi Franky,
I use EMEFS to allow some users to upload events from the frontend.
Some people do it from their smartphone and for some reason manage to schedule the same event twice with the same settings. I think this is due to the refresh delay after validating their form. The redirection is not immediate and they think that their programming was not taken into account and they validate a second time.
How can I prevent the same event being scheduled twice?
Thank you for your excellent work !
Dear Franky,
In the settings of both the EME- and EMEFS-plugin I made the initial state of all new events “concept”.
The charm of the EMEFS plugin is that our volunteers can make new events with this plugin without logging into the backend of WordPress and EME. So EMEFS is an excellent tool for them because they don’t have to worry about things like templates, (custom) fields, short codes, the correct mail ouput. Thank you for providing this plugin. But …
For some reasons I want some events made by EMEFS to be published directly, without going to the backside of WordPress and EME. Therefor I made a form.php, f.i. form_tobepublisheddirecty.php and uploaded that to a directory as described in the readme.txt of EMEFS.
According to the description I thought that the following code should make the new event to be published directly. However, it does not work.
<div class="input">
<label for="event_status"></label><?php _e('State for new event','events-made-easy-frontend-submit'); echo ', maak de status ID <strong>1</strong>. '; ?></label><br/>
<?php EMEFS::field('event_status'); ?>
<?php EMEFS::error('event_status'); ?>
</div>
The status of the new event stays “concept” (ID=5). And I have no idea what’s the reason, or what I forget or do wrong.
And because the event_status has no property I cannot organize the change to public by:
EMEFS::property(‘event_status’,’hidden’,”value=1″)
I hope you have a suggestion for this problem.
Ard Hartsuijker
]]>Thanks for this nice frontend-eme plugin and the eme-plugin. However I have a problem.
In my form_test.php I made the following changes/additions, resulting in two additional input fields:
<div class="input">
<label for="event_single_event_format"><?php _e('template form id=2','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::required_field('event_single_event_format'); ?>
</div>
<div class="input">
<label for="event_registration_form_format"><?php _e('template vrijwilligers id=1','events-made-easy-frontend-submit'); ?></label><br />
<?php EMEFS::required_field('event_registration_form_format'); ?>
</div>
I have two templates. With those those templates I can get what I want. But …. I do not know or understand or find what kind of input I have to give in the two additional input fields of the eme-frontend submit page.
What I did find is that if I make those fields textareas and put the the text of both templates in those fields, the eme-frontend plugin does exactly what I want. But for an eme-frontend-way-of-living for my volunteers this is not very comfortable and I don’t want them in my WordPress backend.
The texts of my templates are (at present it’s all on my local host):
id=2
<strong>Vrijwilligers voor rondleidingen op afspraak in de Dwingeloo Radiotelescoop op #_STARTDATE{l j F Y} van #_STARTTIME tot #_ENDTIME uur
</strong>#_NOTES
Aangemelde vrijwilligers<em>[eme_bookings id=#_EVENTID template_id=4]</em>
#_ADDBOOKINGFORM
#_CANCELBOOKINGFORM
Terug naar het overzicht in <strong><a href="https://localhost/camrastransipbackup3/frontend-vrijwilligers/">Frontend vrijwilligers</a></strong>.
id=1
<div style="max-width: 400px;">
<div class="eme-rsvp-form">
<br/>
<div><strong> * = verplicht veld</strong></div>
<br/>
<div>#_SEATS</div>
<div>ACHTERNAAM *#_LASTNAME</div>
<div>VOORNAAM *#REQ_FIRSTNAME</div>
<div>E-MAIL *#_EMAIL</div>
<div>INVULROOSTER * (vink tenminste één aan)</div>
<div>#_FIELD{2}</div>
<br/>
<div>OPMERKINGEN:#_COMMENT</div>
</div>
</div>
#_SUBMIT{Verzend je aanmelding}
May be I’m asking something which is not possible in this eme frontend plugin, but I hope I’m overlooking something.
Ard H https://www.camras.nl
]]>So I have been slowly plugging away and now at a road block in the add member section. I have tried multiple times to upload the .csv file using the support page. All information in this file is correct so I do not know what the problem is. It will start to upload and then it flashes membership options briefly (even though these are in my file) and then says no data available!!
Example of file
“lastname”,”firstname”,”Email”,”Phone”,”address1″,”address2″,”city”,”state”,”zip”,”country”,”massmail”,”Membership”,”status”,”status_automatic”,”paid”,”start_date”,”end_date”,”creation_date”
“Horgkety”,”Sophy”,”[email protected]”,””,””,””,””,””,””,””,”0″,”Group Annual Membership”,”active”,”1″,”1″,”1/07/21″,”1/07/22″,”22/01/22″
I am beyond frustrated as I don’t know why it isn’t working.
So I then go to manually enter people on the membership page and click add member. I input all the information and there is no submit button to finish this??
I managed to add all the people but I can not transfer this across to any membership at all.
I am basically needing this to work our we are rebuilding our website and I have all the member information so do not need people to sign up.
Please help!!
EDIT. Sorry I got this in the wrong forum!!!! my brain is fried!!!
]]>Hello
I am building a new website for our association (on local host at moment so can’t share a link).
I have put the short code
[emefs_submit_event_form]
On my page for the form so our members can submit events however it says this
Sorry, but you’re not allowed to submit new events.
I am logged in as a user (it used to say you need to be logged in but I managed to fix that issue).
I have tried multiple options in the WP-settings-EME FrontEnd Submit section in the Submit new event capability thingy. I have it now set to the default edit posts. but I tried other options to no avail. I then went back to the Events Made Easy plug in to see if there was anything I needed to select in there but did not find anything.
What do I need to do so our logged in members can see the form to submit an event. I just don’t understand what I need to do to make it happen.
]]>Hello,
I installed the plugin on my site but in the event form page, the “zip” and “country” fields are missing.
I added them in the form.php file installed in the emefs folder of my child theme. Everything works except that the labels are not translated.
So I went to see the file events-made-easy-frontend-submit-en_FR.mo located in wp-content/languages/plugins.
When I actually open it, there is no zip & country fields.
How to add these lines with their translation?
Via Poedit you can’t add a line.
Thanks in advance for your help.
]]>Hi Franky
I use EMEFS on the frontend so that skippers can program their navigations. Whatever the date and time entered for the event, it is the date and time of the entry that is used. Maybe a side effect of the EME update and renamed function?
Frédéric
Hi Francky
I use a subscription and unsubscription page with the shortcode mentioned in the subject.
When you indicate your email and validate the captcha and the form, the system indicates that it has sent an email with a link. But in fact there is no mail that is sent.
You should be able to test on the link page.
Thanks in advance for your help.
Frédéric.
]]>
Hi Franky,
I use EMEF to allow the publication of events from the frontend. This morning (but since when?) I notice that my frontend form is not working anymore. Everything is filled but the final redirection does not happen after validation and the event does not appear in the event list. It’s as if nothing happens after the validation, the content of the fields are deleted and the console doesn’t tell me anything. Do you have an idea?
I am very annoyed
Frédéric,
Hi,
The frontend submission form was working great and all of a sudden it wasn’t. This happened back in February and I suspect it was due to an update, but I can’t see where it is not pulling the correct form. The form used (with the captcha) is in the wp-content/plugins/events-made-easy-fronted-submit folder.
Thanks.
]]>Hi there,
afer the guest booked, i need her to print,fill,sign,email a contract (5 pages pdf) within 1 week.
I also need her to carefully read and understand why she has to do that.
unfortunately, the “Booking successfull” Message will disappear very soon and show the Event page again.
Since the mail delivery could theoretically be late or not arrive at all (maybe the guest mistyped it), i do not want to rely on it.
How can i prevent the redirect?
I just want the guest to read the text and understand the next steps
I’d like to display bookings/names of people registered for classes on a private webpage, so the owner doesn’t have to login to view bookings (their computer skills are lacking).
I previously displayed the the bookings on the booking page with the code below, however, the owner decided he doesn’t want the public to see the bookings.
How would I keep the booking form I have now without the names of those booked, but display the names of people booked on a different page? Would I need 2 booking forms — is that possible? Thanks for any help.
<th scope=’row’>Registered for class:</th><td>#_BOOKINGS</td></tr>
Hi!
Is it possible to exclude some categories in categories frontend selector placed in form?
I use form.php placed in /plugins/events-made-easy-frontend-submit/templates
Thanks
]]>Hi!
I need that editor role users can publish events using frontend event submit.
I placed shortcode [emefs_submit_event_form] in this page: https://www.testingweb.cat/que-fem/formacio-test-entrar/
But this message appears if users are not logged in WordPress:
Sorry, but you’re not allowed to submit new events.
How can I do to place a login form to allow users post events in frontend even submit?
(I’m novice in php, so I will appreciate your help)
Another question is:
– Is it possible to send email to administrators users when a new event is published?
– Is it possible to send a confirmation email to the user that have just post event?
I can pay some money to help me with these requirements.
Thank you very much!
]]>I installed your main plugin and the frontend submission plugin: but i can’t find anywhere the possibility to make settings for frontend submission, e.g. the form is saying “You have to configure the page where successful submissions will be redirected to.” – but where can I do this?
Kind regards
Elcom221