After installing Lite and creating an event, the registration form doesn’t appear on the details page. I spent an hour scouring the support forums and have made sure I set Display Ticket Selector to Yes, and still no Registration form. Is there a simple set of troubleshooting instructions for this?
]]>There are no Yoast settings on the individual events pages. I am trying to set past events to no index. I tried the code offered here https://gist.github.com/joshfeck/70979dc12f93ab25dd668ed4500be477 but it is not working. I can see the event is still set to follow. This is causing an issue because Google is indexing them. How can I get either Yoast to show or is there updated code to prevent past events from being indexed?
thanks
Hi,
Before buying premium version / addons, I am not sure that your plugin support the following things or not.
It is SEO Friendly ? I mean it create SEO Friendly Url OR have to deal with third party plugin ?
Multi language support in built i mean that i can translate your plugin in other language using pot file or other way ?
Kindly please let me know weather it support both feature or not.
Looking forward to hear you soon.
Regards,
Krinay
Fatal error: Switch statements may only contain one default clause in /opt/lampp/htdocs/samples/wp-content/plugins/event-espresso-free/includes/shortcodes.php on line 919
]]>Hi,
I have a requirement to register user to attend event, on successfully registration the user will get a free membership for one year. The membership section will work from another plugin and the event section will work from this plugin. But I am facing some problem listed below:
1. On registration page a form is displaying without any submit button. Please guide us.
2. Also we need some customization on the plugin registration to attend event section to implement the ‘add membership level’ functionality. Please let me know if there is any hook to execute my custom code on user registration success.
Hi,
If anyone register to a event on this plugin, we want the user will automatically subscribe to a membership plugin we are using.
So, is there any hook or function, which will call immediate after the event registration?
]]>I installed on my staging server on godaddy’s managed wordpress service. I immediately got the following critical error:
“Event Espresso has detected that wp_cron is disabled. It’s important that wp_cron is enabled because Event Espresso depends on wp_cron for critical scheduled tasks.”
Now I can understand an error if I was on some noname hosting provider, however I am on GoDaddy Word Press Managed Services. Have you heard of Godaddy? Yes? Great! So why am I getting a critical error upon installing your software after paying $280??!
This is a total fail. Don’t blame Godaddy because they bla bla bla. This is your product. It should work on Godaddy. It is completely up to you to fix it so that it does work on godaddy, or find developers who can.
Signed an unhappy customer at 4:12 AM.
Great plugin but I have three issues:
1) The country list dropdown menu in the registration form only shows USA and Canada, how can I show all countries?
2) How can I select pricing currencies other than US dollar?
3) I did a registration test bit I did not receive any registration email, is there any setting I need to adjust to make it work?
Thanks in advance!
We are considering this plugin for our event registration.
I do not see where it shows or explains if there are other payment gateways other than PayPal that work with this?
Also how much does the paid version cost? Again I do not see it in the documentation.
Thanks in advance for your help!
]]>After I sign up for my event nothing happens. It doesnt take me to my thank you page or take me to my paypal page. It doesnt seem to display all my current questions it leaves out my adress and phone fields and just has name and email.
how do i fix this?
]]>Plugin was working fine and now I am getting an error with the first name is missing and it cycles so that the user cannot register and pay. Anyone else having this issue?
]]>Hi! We use Authorize.net. This looks like a great plugin, and just what our needs require, but I want to make sure we can use it. We have to use Authorize.net (and that’s inflexible), so please let me know if this works with your plugin. I see in the description that it works with PayPal, but it didn’t mention anything about Authorize, so I thought I’d check.
Thanks,
Brendan
hii
i am using your plugin and its functioning great but i have one custom requirement that i want to give user to register then into four different roll and according to there roll there will be price of four different type to each event.
please help
example
roll-1=100$
roll-2=200$
roll-3=300$
roll-4=400$
thank you
]]>I use this plugin for free events where there are not payments. I noticed that email confirmations are not being sent and that the settings for the email confirmations all appear to mention a payment.
Are these emails only sent for events that charge a fee?
If so, is this an update that you could look into for the future?
Thanks!
]]>Good day,
Download PDF Invoice not working. Geting error message:
Warning: require_once(/home/teuves/domains/***/public_html/wp-content/plugins/event-espresso-free/gateways/invoice/template.php): failed to open stream: No such file or directory in /home/teuves/domains/***/public_html/wp-content/plugins/event-espresso-free/espresso.php on line 1133
Fatal error: require_once(): Failed opening required ‘/home/teuves/domains/***/public_html/wp-content/plugins/event-espresso-free/gateways/invoice/template.php’ (include_path=’.:/usr/share/pear’) in /home/teuves/domains/***/public_html/wp-content/plugins/event-espresso-free/espresso.php on line 1133
I connected to ftp and there is no such file and directory – invoice/template.php
]]>I am receiving emails from this plugin about the IPN not being properly set up. There is a ticket in this forum for this issue, but is about paid events. My events are free. Is there a settings option to prevent this email from being sent out? An option that does not involve plugin code alteration would be best if possible.
Thank you!
]]>I have an event on my website but none of the registrants are appearing in the Attendee List, Attendee Report, or when I export the attendees in an Excel/CSV file. Although the event is showing the count of registrants in the “Event Overview” display, when I click on View Attendees, I only get “No Records Found!” (and I made sure I clicked “Show All…” and my Live Search Filter is clear). After looking online i deactivated event ticketing and this worked now i can view the attendees but the problem is everytime i want to check the list i have to deactivate the plugin and i was wondering if there is a way i can fix this.
]]>good afternoon.
I have the free application and want to know I have to do to get payment.
I created an event where people have to register when you sign has to make a payment of X and then has to choose samples that have to pay, at a price of Y.
If the user returns to the site and want to buy more muestrar (Y), you have to re-register and redo the payment X.
How I can make a user already registered with espresso event can do all the shopping you want after you have registered and have made the down payment?
Thank You.
]]>Hello,
I’m using Event Espresso 4 Decaf and all was well.
I had to update my theme and I re-entered the following text into my theme’s function.php to remove some text on the Event page (which worked before my update):
function mycustom_filter_gettext( $translated, $original, $domain ) {
// This is an array of original strings
// and what they should be replaced with
$strings = array(
‘Available Tickets’ => ‘Available Options’,
‘Price’ => ‘ ‘,
‘Ticket Details’ => ‘ ‘,
‘Ticket Name and Description’ => ‘ ‘,
‘ / ticket’ => ‘ ‘,
‘Qty*’ => ‘ ‘,
);
// See if the current string is in the $strings array
// If so, replace its translation
if ( isset( $strings[$original] ) ) {
// This accomplishes the same thing as __()
// but without running it through the filter again
$translations = get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
However, this solution is no longer working. So I followed the instructions in this link: https://eventespresso.com/wiki/how-to-change-wording-with-poedit/
While the instructions tell you to include the new language files in uploads/espresso/languages, my site doesn’t include an “espresso” file in the “upload” directory… I added it to the plugins languages folder but nothing happened. I also created a directory /espresso/languages in my uploads folder and nothing happened….
Please advise. The event isn’t really a “Ticket” based event so we would like that verbiage removed.
https://www.lotusvillageyoga.com/events/vinyasa-flow-yoga/#vinyasa-flow-yoga
Thanks!
]]>I have this form
https://events.r20.constantcontact.com/register/eventReg?oeidk=a07eb1nsi4o356577c3
Problem is that each student needs a separate email address. Parent can’t register multiple children with options specific to each child.
can this plug in handle it
]]>What are the plans for integrating this or the Pro version of this plugin with BuddyPress so that groups can create and manage their own events?
]]>I’m trying to get this lovely plugin working in Dutch. I’ve already the documention on the translation files (po and mo files in uploads/espresso/languages folder) and was under the impression that “Once the files are uploaded, as long as WordPress has been updated to accept a new language, Event Espresso will follow suit.” …but it’s not doing it for me.
My WordPress is 4.0.1 in Dutch. Thanks in advance.
]]>Hello,
We are using Event Espresso v 3.1.36.4.L, we continually get emails that tells:
The IPN for [website name] at [website] has not been properly setup and is not working. Date/time ——
Given that the IPN is deactivated from PayPal settings.
How to turn off these messages?
Thanks a lot
]]>After installing Event Espresso decaf, my events page comes up blank.
I had a page where I displayed articles from the Events category on my site, but Event Espresso hijacked this URL without any warning. So now my events category comes up empty!
It is a really bad idea to mess up running systems without any kind of warning and possibility to get this back. Deactivating the plugin does not fix this problem!
Event Espresso should run a check before doing any changes to a site and warn of possible conflicts. I must say I am disappointed. From the reviews I have seen, I did not expect fundamental problems like this.
]]>I’m looking for a plugin where registered users can create appointments and add other registered users as attendees. Ideally they would get an email where they have the option to accept or reject the appointment. Is this possible with this plugin?
]]>Hi there!
Thanks for checking out Event Espresso 3 Lite.
Documentation for Event Espresso 3 Lite
https://eventespresso.com/support/documentation/versioned-docs?doc_ver=ee3
Troubleshooting Event Espresso 3 Lite
Having trouble with Event Espresso 3 Lite? Follow these troubleshooting steps:
1) Is WordPress up to date? Is Event Espresso 3 Lite up to date?
2) Have you you tried temporarily deactivating all plugins and reactivating only Event Espresso 3 Lite to rule out a conflict with another plugin?
3) If you still need help, then create a free account on EventEspress.com and then create a new support post in our support forums:
https://eventespresso.com/support/forums/
Additional Resources for Event Espresso 3 Lite
Have a question about Event Espresso? Try running a search on the support site for Event Espresso.
]]>Very nice plugin but I am looking at a possibility.
Is it possible to show an event calendar in a widget or on a page. Is there any shortcode for it?
When my event reaches full capacity is it possible to continue to display the event’s information rather than the “We are sorry but this event has reached the maximum number of attendees!” message?
Thanks!
]]>The user is being sent to the Paypal site. They’re successfully being page and redirected to the following mysite.com/page_id=170&r_id=1-54061eb887faf&type=paypal.
When they arrive on the page the following message is appearing:
Class/Event: Event Attendance Registration – Full Convention
Primary Registrant:
Payment Type: PayPal
Payment Date: September 2, 2014
Amount Paid/Owed: C$40.00 Incomplete
Payment Status: Incomplete
Registration ID: 1-54061eb887faf
Transaction ID: 0
I am not sure why the status of incomplete is showing. The transaction is showing as complete via paypal.
Have I set something up incorrectly?
Regards,
Jeff
Hi. Easy answer I think/hope, I’m promoting a gig that has three different ticketing prices (concession.ticket,ticket+donation). In the pricing setting, I cannot seem to do this. How would I go about this please?
Other than that, a top plugin. Thank You!
]]>