Forum Replies Created
-
AuthorPosts
-
Simon Groves
ParticipantAs an aside, I’ve now tried 2 different payment gateways (Worldpay and PayPal), issue still remains as wondered if it was an issue with the callback (somehow)
Simon Groves
ParticipantHi Cliff
I’ve updated the plugin (renewed the licence)
After running some more tests, I still have the same issue. If you look at http://pasteboard.co/5k1n3LHxO.png you can see 4 orders have gone through but none exist as attendees.
I then wondered if it was because the order was still processing not complete. So I went to WooCommerce > Orders and marked it complete: http://pasteboard.co/5k2plyIHG.png
However, rather than mark the order complete, it takes you to this screen: http://pasteboard.co/5k6P6c1Vv.png and doesn’t mark the order complete
I’m not sure if that’s related or not?
Happy to provide access if required, please let me know what you require if you do.
Many thanks
Simon Groves
ParticipantThanks Cliff
Annoying the image link didn’t work. My issue differs, once an order has been placed, if you login as an admin, go to events, then the event in question and click attendees, it’s simply blank and doesn’t show any, even though I have orders that say otherwise.
I may be wrong but think your code snippet is for another issue?
Thanks again
Simon Groves
ParticipantHello Nico,
Thanks for your response. Firstly apologies for the confusion on the demo site code in the footer, this was purely placed there to see if any issues were fixed by a call a missing JS/CSS file included on your demo. Rookie mistake by me!
It is indeed that I have somehow managed to miss the wp_footer call in the footer.php file. Not show how I’ve managed this but It’s now all working perfectly.
Thanks again for your swift support on this.
-
This reply was modified 9 years, 2 months ago by
Simon Groves.
Simon Groves
ParticipantHi Jeff,
Thank you very much for your response!
I’m going to give it a shot and fingers crossed it’s a smooth transition.
Much appreciated.
October 18, 2016 at 8:42 am in reply to: New customer order email missing quantities and prices #1178346Simon Groves
ParticipantHi AndrĂ¡s
I did try and remove it but sadly it made no difference
Is there anything else I can try?
Many thanks
Simon Groves
ParticipantHi,
I believe this is now resolved. To help others, I needed to edit 2 files in WooCommerce
I copied these to my theme:
woocommerce/orders/order-details-item.php
woocommerce/emails/email-order-items.phpI added the same code into both templates. In order-details-item.php I placed it before:
do_action( ‘woocommerce_order_item_meta_end’, $item_id, $item, $order );And in email-order-items.php I placed it after:
do_action( ‘woocommerce_order_item_meta_end’, $item_id, $item, $order, $plain_text );This is my code:
#Let's get the attendee info $ticket_product_id = $item['product_id']; $fieldset_meta = get_post_meta( $order->id, Tribe__Tickets_Plus__Meta::META_KEY, true ); $i = 1; if (! $fieldset_meta ) return; foreach( $fieldset_meta AS $item => $value ) { #add conditional otherwise attendee list shows for every ticket. In my case, I have 2 ticket types: Guest and Member, I only collect this for Guests. Not doing this check means the attendee list shows on the member tickets too if ($ticket_product_id == $item){ foreach( $fieldset_meta[$item] AS $key => $value ) { $att_name = (isset( $value['name'] )) ? $value['name'] : ''; $att_email = (isset( $value['email-address'] )) ? $value['email-address'] : ''; $att_phone = (isset( $value['phone-number'] )) ? $value['phone-number'] : ''; $att_company = (isset( $value['company'] )) ? $value['company'] : ''; echo '<p>'; echo '<strong>Attendee - '. $i .'</strong><br />'; echo 'Name: '. $att_name .'<br />'; echo 'Email: '. $att_email .'<br />'; echo 'Phone: '. $att_phone .'<br />'; echo 'Company: '. $att_company .'<br />'; echo '</p>'; $i++; } } }I hope this helps someone!
Simon Groves
ParticipantHi Geoff,
Thanks but it’s now all ok
Simon Groves
ParticipantScrap that! U think I’ve fixed it. I had an wootickets directory in my theme and no longer need this due to plugin now being replaced by Event Ticket Plus
Simon Groves
ParticipantThink I’ve solved this
We had The Events Calendar: WooCommerce Tickets and Event Tickets Plus running at the same time
Simon Groves
ParticipantThanks again
I rolled back to a previous version and that seems to have worked (ensuring all plugins are the same version number)
Cheers
Simon Groves
ParticipantThis reply is private.
Simon Groves
ParticipantThanks George
April 5, 2016 at 7:54 am in reply to: The page "Events" uses the "/events" slug: the Events Calendar plugin will show #1098311Simon Groves
ParticipantAh! Perfect.
Thanks Nico
Simon Groves
ParticipantApologies, now seems ok!?
-
This reply was modified 9 years, 2 months ago by
-
AuthorPosts
