fcvolunteer
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Redirect to Stripe on Successful BookingAny update?
Forum: Plugins
In reply to: [Events Made Easy] Redirect to Stripe on Successful BookingThanks Franky,
I updated my eme_payments.php file and it’s forwarding automatically now however I’m getting an error message.
Fatal error: Uncaught exception ‘Exception’ with message ‘The Stripe Token was not generated correctly’ in C:\inetpub\**.com\****\wp-content\plugins\events-made-easy\eme_payments.php:857 Stack trace: #0 C:\inetpub\**.com\****\wp-content\plugins\events-made-easy\eme_actions.php(129): eme_stripe_charge() #1 [internal function]: eme_actions_init(”) #2 C:\inetpub\**.com\****\wp-includes\plugin.php(525): call_user_func_array(’eme_actions_ini…’, Array) #3 C:\inetpub\**.com\****\wp-settings.php(393): do_action(‘init’) #4 C:\inetpub\**.com\****\wp-config.php(94): require_once(‘C:\\inetpub\\**.c…’) #5 C:\inetpub\**.com\****\wp-load.php(37): require_once(‘C:\\inetpub\\**.c…’) #6 C:\inetpub\**.com\****\wp-blog-header.php(13): require_once(‘C:\\inetpub\\**.c…’) #7 C:\inetpub\**.com\****\index.php(17): require(‘C:\\inetpub\\**.c…’) #8 {main} thrown in C:\inetpub\**.com\****\wp-content\plugins\events-made-easy\eme_payments.php on line 857
(I’m happy to send you the full error but I didn’t think it was safe to post here. Please advise)
Thanks again!
Forum: Plugins
In reply to: [Events Made Easy] Stripe total is multiplied by 100I found the trunk file and ftped. Working perfectly now, thanks
Forum: Plugins
In reply to: [Events Made Easy] Stripe total is multiplied by 100Thanks for the reply. When I followed your link I see the same version I already have activated: 1.7.18. Is there a 1.7.19?
Forum: Plugins
In reply to: [Easy Appointments] Set Defaults and Hide Labels AreaGreat! Thanks so much. Worked perfectly.
Forum: Plugins
In reply to: [Easy Appointments] Feature Request: Change 'agree to terms' textI agree! I would love this feature!
Thanks for the reply. I did ask in the general WP forums but got no response. The visitors are logging in using a my theme’s login page so I’ve contacted my theme’s authors.
Thanks for they idea!
Forum: Plugins
In reply to: [Events Made Easy] Prompt to LoginThanks!
Forum: Plugins
In reply to: [Events Made Easy] Discount Code HelpThanks so much!
One last thing. Is there a way to limit how many times a code can be used?
Thanks again.
Forum: Plugins
In reply to: [Events Made Easy] Discount Code HelpOops sorry.
add_action('eme_insert_rsvp_action', 'FCNC_eme_coupons',20,1); /** * Custom function to calculate coupon code discounts for events */ function FCNC_eme_coupons($booking) { global $wpdb; $bookings_table = $wpdb->prefix.BOOKINGS_TBNAME; $discount = 36; $where = array(); $fields = array(); // Grab the coupon code from the extra answers $event_id = $booking['event_id']; $event = eme_get_event($event_id); $booking_id = $booking['booking_id']; $answers = eme_get_answers($booking_id); $seats = $booking['booking_seats']; $coupon = ""; foreach ($answers as $answer) { if ($answer['field_name'] == "Coupon") { $coupon = $answer['answer']; } } if ($coupon == "Friends" && $seats>1) { // If coupon code used, apply the appropriate price change $price = $booking['booking_price']*($seats-1)/$seats; $price = sprintf("%01.2f",$price); // now check $coupon for your wanted value $fields['booking_price'] = $price; $where['booking_id'] = $booking['booking_id']; $wpdb->update($bookings_table, $fields, $where); } return; }
Forum: Plugins
In reply to: [Events Made Easy] Discount Code HelpOn a similar note, how would I add additional coupon codes that deduct $5 from each ticket?
Thanks!
Forum: Plugins
In reply to: [Events Made Easy] Discount Code HelpThe code is
Friends
Forum: Plugins
In reply to: [Events Made Easy] Discount Code HelpThanks! Silly me. That part works now but I’m still running into the issue that if there’s only one RSVP and they’re using the coupon code which deducts 1 entry fee they’re still being brought to the Paypal screen.
Any ideas?
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Donor and Donation Information is BlankThanks for all your support. The issue tuned out to be a conflicting plugin (not sure which one) which I thought I had tested but I guess not.
Thanks again!
Forum: Plugins
In reply to: [Appointments] Appointment not savingHi Bojan,
Thanks for the suggestion. I went ahead and deactivated all plugins and switched to the default WP theme and I still got the same error.
Now what?
Thanks!
Rochel