Search Results for 'booking form'
-
Search Results
-
Hi, we’re hosting a “virtual convention” for a number of Role-Playing and Board Games, and Event Organiser has been a god-send.
But I’ve got a strange problem. We’re outputting the event capacity and and tickets remaining data, using
eo_get_event_capacity
andeo_get_remaining_tickets_count
and one of our events always returns ‘0’ for the event capacity. All our other events, from all categories, return both fields as expected, only this event.We are doing the output within the tickets loop in the
eo-ticket-picker.php
template and the code we are using to output the capacity is:eo_get_event_capacity($booking_form->get('event_id'));
- Deleting and re-creating the event seems to have no effect, even when the event title and ticket name/count is changed.
- Changing the number of tickets and “cap bookings” seems to have no effect, yet the remaining tickets count works fine.
- Changing the venue also has no effect.
- Again, this works perfectly in all events but this one.
The problem event is located here: http://www.gamergeekend.org/events/event/civilization/
All events can be found here: http://www.gamergeekend.org/events/
Any help on figuring this out would be much appreciated.
-
This topic was modified 10 years ago by
Robert Marsden.
-
This topic was modified 10 years ago by
Robert Marsden.
-
This topic was modified 10 years ago by
Robert Marsden.
The “street-address” label in eo-booking-form-address.php dosn’t translate to its german values.
However it seems that only the placeholder is translateable via esc_attr_e but not <label> itself.Could you provide us with a fix in the next version. It’s a minor bug, but pretty annoying in terms of pro-plugin.
It seeems that the label dosn’t translate in backend-view as well.
Thanks in advance
JanTopic: Shortcode fro event price?
Hi Stephen, I would like to show the event price on the event page, separate from the booking form. How can I do that, I looked for shortcode but couldn’t find any for the price.
Best regards, Frank
Hi Stephen,
I downloaded the extension in my customer area on your website now and it worked. I have successfully installed the extension and added the field to my booking form. Everything is working fine except 2 problems:
I have created a german .po end .mo File from your .pot file and uploaded it – but no translations are made at all:
I have defined the confirmation email message in my functions file – now the discount is added in my email but it is not styled neither translated.
The code is like that:
$booking_table = sprintf(
‘<table style=”width:100%%;text-align:center;”>
<thead style=”font-weight:bold; font-size:12px; font-family:Aria, Helvetica, sans-serif”><tr> <th>%s</th><th>%s</th><th>%s</th> </tr></thead>
<tbody>’,
__( ‘Quantity’, ‘eventorganiserp’ ),
__( ‘Name’, ‘eventorganiserp’ ),
__( ‘Price’, ‘eventorganiserp’ ),
__( ‘Ref.’, ‘eventorganiserp’ )
);foreach ( $booking_tickets as $ticket ) { $booking_table .= sprintf( '<tr> <td style="font-size:12px; font-family:Aria, Helvetica, sans-serif">%s</td><td style="font-size:12px; font-family:Aria, Helvetica, sans-serif">%s</td><td style="font-size:12px; font-family:Aria, Helvetica, sans-serif"> %s </td> </tr>', esc_html ( $ticket->ticket_quantity ), esc_html( $ticket->ticket_name ), eo_format_price( $ticket->ticket_price ), $ticket->ticket_reference ); } $booking_table .= apply_filters( 'eventorganiser_email_ticket_list_pre_total', '', $booking_id ); $booking_table .= sprintf( '</tbody></table>
‘, __( ‘Gesamt’, ‘eventorganiserp’ ), eo_format_price( $total_price ) );
any chance to add the discount here and style it??
It seems that there is something weird with the translations of eo on my site as they never seem to work 🙁
Any help would be appreciated.
Thanks, Edith