fcvolunteer
Forum Replies Created
-
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Donor and Donation Information is BlankI’m pretty sure the details moved over and that this is a new problem.
Thanks!
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Donor and Donation Information is BlankHi David,
We’ve been using the plugin since before you took over and we’re not seeing any donor details for any donors but we are seeing the name and amount. Even for donors who gave a long time ago and I’m pretty sure we were able to see their information previously, we are not able to see info. now.
Thanks!
Forum: Plugins
In reply to: [Appointments] Appointment not savingHi Bojan,
Thanks for your reply. Here’s a link to the page. I don’t remember making any changes we just had some customers tell us that it wasn’t working and we checked and they were right.
Thanks!
Forum: Plugins
In reply to: [Easy Appointments] Change Day Week Starts & Checkbox TextHi Nikola,
I watched your video and those were the same steps I had taken. It still isn’t working for me. I even tried viewing the site in an incognito window. Any ideas why it’s not writing to my site?
Thanks!
Rochel
Forum: Plugins
In reply to: [Easy Appointments] Change Day Week Starts & Checkbox TextHi Nikola,
I tried to make the text changes using the loco translate plugin but it doesn’t seem to be working. I’ve used this plugin in the past with no issues.
Thanks!
Forum: Plugins
In reply to: [Easy Appointments] Change Day Week Starts & Checkbox TextHi Nikola,
Thanks for your reply. I went in and changed the 1 to a 0 in line 48 and that worked. (I don’t like to remove code just in case I’ll need it later ?? )
If I create my own translation file in my child theme will it be overwritten with the plugin update?
Thanks!
Rochel
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Donor and Donation Information is BlankHi David,
I’m running version 4.0.11 and it’s the Palm Tree version. I am using this plugin on two sites. On one it works and the other it doesn’t.
@paul. NM I figured it out. Thanks!
@paul – Can you tell me how you were able to make an offline donation?
Hey pagan11460,
You can set the number of columns for your campaigns using the shortcode. Here’s a link to more settings for the shortcode.Your shortcode should look something like this:
[campaigns columns=3]
.Hope that helps.
Forum: Plugins
In reply to: [Events Made Easy] Discount CodeThanks!!!
Forum: Plugins
In reply to: [Events Made Easy] Discount CodeEmailed you. Thanks!
Forum: Plugins
In reply to: [Events Made Easy] Discount CodeHow do I find your email?
Thanks so much!
Forum: Plugins
In reply to: [Events Made Easy] Discount CodeThe event is set to be single-price the only amount I have listed for price is 25. I understand that if someone is only purchasing a single ticket and uses the discount code the price would equal 0 and they wouldn’t be brought to the payment page but that doesn’t explain why someone who books 4 tickets isn’t being charged for 3 and being brought to the payment page.
Any other ideas?
Forum: Plugins
In reply to: [Events Made Easy] Discount CodeAfter using the code below
add_action('eme_insert_rsvp_action', 'my_eme_coupons',20,1); /** * Custom function to calculate coupon code discounts for events */ function my_eme_coupons($booking) { global $wpdb; $bookings_table = $wpdb->prefix.BOOKINGS_TBNAME; $discount = 25; $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); $coupon = ""; foreach ($answers as $answer) { if ($answer['field_name'] == "Coupon") { $coupon = $answer['answer']; } } if ($coupon == "TeenFriend") { // If coupon code used, apply the appropriate price change $price = $booking['booking_price'] - $event['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; }
it stopped forwarding visitors to the paypal payment page and is discounting the entire booking amount instead of just discounting the event price.
What am I doing wrong?
TIA!