Posted: June 19, 2014 at 5:22 am
|
hi there, thanks, |
Hi Adam, Unfortunately we currently can not give any timelines for the EE4 Add-on’s. If you require the Ticketing functionality I would recommend going with EE3 at this time. You will then be able to migrate over from EE3 to EE4 once the relevant Add-on’s you require have been released. |
|
|
thanks Tony, that’s fair enough. it’s a bit annoying that these addons don’t work with EE4, but hopefully they’ll be working in the future and updating from EE3 to EE4 won’t be too painful. thanks, |
Hi Adam, We all feel your pain 🙂 We’d love to have been able to release all of the Add-on’s (or comparable functionality) for EE4 at release, but as EE3 and EE4 are so vastly different systems this just simply wasn’t possible. We have built migration scripts within EE4 that will allow you to migrate all of you current EE3 data over when suits your needs. I can tell you that any custom modifications made to EE3 will almost certainly not be compatible with EE4 (again as they are so vastly different) |
|
|
hi Tony, thanks, |
Your event ‘post’ should actually display the registration form within the post itself, not just a link to the EE event, unless your using MER and hiding the registration form? Do you have a link I can view the post and see what is happening? |
|
|
hi Tony, please check the post here: http://dobuytickets.com/sports/2014-formula-1-abu-dhabi-grand-prix/ it doesn’t display the registration form, just ‘Register’ link which then takes you to the EE event.. i’d like to be able to customise that so if you could guide me a bit that’d be great! thanks, |
|
Hi Adam, The posts don’t contain the form by default. There are a couple of ways to do it, you cna create the post then add in the [ESPRESSO_REG_FORM event_id=xxx] shortcode. While this is the simplest way, it can also be prone to problems, especially if you update the event as it will remove the shortcode. The second option does require a little bit of template editing but is more bulletproof. If you copy /wp-content/plugins/event-espresso/templates/event_post.php over to wp-content/uploads/espresso/templates/ and then edit it there you can add in a line of code that will automatically add the form. Simply add <?php echo do_shortcode('[ESPRESSO_REG_FORM event_id=' . $event_id . ']'); ?> at the bottom of the file. Now every event Post will have the appropriate form attached. While you’re in the file you may want to remove the register links: Change this line <p><img style="padding-right: 5px;" src="<?php echo EVENT_ESPRESSO_PLUGINFULLURL?>/images/map.png" border="0" alt="<?php _e('View Map', 'event_espresso'); ?>" /><?php echo $google_map_link; ?> | <a class="a_register_link" id="a_register_link-<?php echo $event_id ?>" href="<?php echo $registration_url; ?>" title="<?php echo stripslashes_deep($event_name) ?>"><?php _e('Register', 'event_espresso'); ?></a></p> to <p><img style="padding-right: 5px;" src="<?php echo EVENT_ESPRESSO_PLUGINFULLURL?>/images/map.png" border="0" alt="<?php _e('View Map', 'event_espresso'); ?>" /><?php echo $google_map_link; ?> | <a class="a_register_link" id="a_register_link-<?php echo $event_id ?>" href="<?php echo $registration_url; ?>" title="<?php echo stripslashes_deep($event_name) ?>"><?php _e('Register', 'event_espresso'); ?></a></p> and remove this line completely <p><a class="a_register_link" id="a_register_link-<?php echo $event_id ?>" href="<?php echo $registration_url; ?>" title="<?php echo stripslashes_deep($event_name) ?>"><?php _e('Register', 'event_espresso'); ?></a></p> Please note you will have to update the event before any changes will be shown on the post. |
|
thanks Dean for your reply! when i create an event, there’s ‘create a post’ option there. i’ve moved event-post.php file how instructed but nothing on the post was changing. i’ve double checked on ‘Develpers Only’ that events-page.php has been moved so i guess it must be some other file that needs tweaks? thanks, PS. is it possible to display google map instead of just ‘View MapMap and Directions’ ? |
|
Hi, No, event_post.php actually refers to the post created by the event, NOT the custom post type that can also be created. Did you modify the template? Did you update the event afterwards? (Making sure that the “Add/Update post for this event?” option at the bottom of the event is set to Yes). Regarding the venue, add [ESPRESSO_VENUE] to the event description. You may want to change the Template Setting “Display the address in the registration form?” to No otherwise you will have two addresses showing. |
|
hi Dean, thanks, PS. on the blog post page, i’d like people first to select what type of a ticket they want and then once they do that, click on register and take them to registration page. would that possible? |
Hi Adam, I think Dean meant to post: Change this line <p><img style="padding-right: 5px;" src="<?php echo EVENT_ESPRESSO_PLUGINFULLURL?>/images/map.png" border="0" alt="<?php _e('View Map', 'event_espresso'); ?>" /><?php echo $google_map_link; ?> | <a class="a_register_link" id="a_register_link-<?php echo $event_id ?>" href="<?php echo $registration_url; ?>" title="<?php echo stripslashes_deep($event_name) ?>"><?php _e('Register', 'event_espresso'); ?></a> to <p><img style="padding-right: 5px;" src="<?php echo EVENT_ESPRESSO_PLUGINFULLURL?>/images/map.png" border="0" alt="<?php _e('View Map', 'event_espresso'); ?>" /><?php echo $google_map_link; ?> </p>
This is possible in Event Espresso 4, but not in Event Espresso 3. If you want to break up the registration where they’d first select a ticket type in a cart, then register, you could try this: Install the Multi Event Registration add-on, then instead of displaying the registration form on the event’s post, display the add to cart link. You can try it out by placing this in the event’s description: [ESPRESSO_CART_LINK] |
|
|
thanks, i’ve used <pre class=”brush: php; gutter: true; first-line: 1; highlight: []; html-script: false”><?php echo do_shortcode('[ESPRESSO_CART_LINK]'); ?> and it worked. thanks, |
Hi Adam, In Event Espresso 3 the cart is on a separate page, but it does allow for a automatic redirect to the cart if you add the direct_to_cart=1 parameter. You can change the anchor text or even display an image by using the anchor=”Anchor text goes here” parameter. I’ll include a link to the Multi Event Registration shortcode documentation for your reference: https://eventespresso.com/wiki/shortcodes-template-variables/#add-to-cart If you want to make the add to cart link more button like you can use some CSS or use an image for the anchor. Here’s a few links that have tutorials that show how to do either: |
|
The support post ‘EE4 update’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.