First of all: nice Plugin! We just bought the pro version of WP Event Organiser.
Now I’ve got two questions:
-
Is there any way to automatically include shipping costs? Currently we want to use the functions of your plugin for booking und payment, but we want to ship the tickets via post.
-
I tested the VAT Extension. It calculates the taxes on top of the ticket prices. Is it possible to show only the tax included in the ticket prices? For Example: Ticket price is 10 EUR (with 19 % included) and a message like (contains 1,60 EUR MwSt.) is showing up?
Thank You!

ckai
Hi,
1. Yes/No – it’s possible, but requires custom code (there are no options for this). There is a planned for feature for ‘priced fields’ – effectively fields you can add to the form customiser which adjust the total booking price. So you could, for example, have a mandatory checkbox which adds a booking fee to the total. There’s no ETA for this at the moment, unfortunately, so if this is a feature you urgently require, get in touch via this form and we can discuss it more.
2. The total amount of VAT should appear just above the booking total, but if you want it included in the ticket price you can copy the template eo-ticket-picker.php
into your theme and edit it there to replace
<?php echo eo_format_price( $ticket['price'], true ); ?>
with
<?php echo eo_format_price( (1 + eventorganiservat_get_vat_percent()/100)*$ticket['price'], true );?>

Stephen Harris
Hi Stephen,
thanks for your support. Your solution for my second questions works, but then the total costs are calculated wrong (with rounding errors and prices like 10,9847392945 EUR). Finally I write a text above the Booking Form that all taxes are included.
The shipping costs for hard tickets are working now. I modified occurrence-picker.js for the visible price and add a further item to the paypal gateway with 2 EUR shipping costs. Maybe not a very nice way, but it’s okay for the moment.
The ‘price fields’ sounds interessting anyway.
Thank you.

ckai