Posted: July 3, 2013 at 9:04 am
|
Hi, I have one event/course with 3 different levels – “Basic” , “Advanced”, “Expert” The “Expert” include the “Basic” and “Advanced” and it for 6 days The “Advanced” include the “Basic” and it for 4 days The “Basic” is 2 days This event/course each time can only take 12 attendees i create one event with 3 different prices but in the listing i can only see the last price and dates in the registration it show 26/07/2013 – 27/07/2013 Thanks, |
Ofir, Thanks for posting details so we can better understand your question. You won’t be able to do what you are wanting with 1 event. You can’t add date limitation to individual ticket types. You will need to create an event for each event date you want. This is something we are working on making easier in our 4.0 version. |
|
|
OK that good to know, (so you will be able to create multiple events in main event) ? if this is true it can solve everything. meanwhile i hope you’ll be able to help me to workaround this issue. |
|
Hello Ofir, “is there a way to have one menu with title “Choose an Option: ” as default so the user will have to choose the right price,” Not currently though you could achieve this with some custom coded jQuery. With a normal registration the user would just need to press the back button to edit the registration. If you are using Multiple Event Registration, the user will see an edit cart link to enable them to go back and edit their details. |
|
Could you please help me with how to achieve the “is there a way to have one menu with title “Choose an Option: ” as default so the user will have to choose the right price,” how to do it with jquery ? Ofir |
|
Hi, If you are not able to modify the code, I would suggest contacting a developer in respect to this, we have a list here https://eventespresso.com/developers/event-espresso-pros/ |
|
Hi, https://eventespresso.com/topic/force-price-selection-no-default-price/ thanks, Ofir |
|
Hi, You would need to add that into the registration_page_display.php file as it is the prices you wish to control. Javascript is turned on in WordPress by default, however you would need to refer to your browser documentation as you may personally not have javascript on. |
|
Thanks, Thanks, |
|
Hi, Just add this to the bottom of the registration_page_display.php, after the last ´´ It’s a modified version from that forum thread you linked. |
|
Thanks, <?php <?php } ?> </form> <?php } if (isset($ee_style[‘event_espresso_form_wrapper_close’])) { <p class=”edit-link-footer”><?php echo espresso_edit_this($event_id) ?></p> so where do i paste this code ?
thanks again, Ofir |
Hi there, I can suggest an alternate approach that involves placing the code Dean suggests using into its own file. What you can do is create a new file and name it mycustom.js and upload it to /wp-content/uploads/espresso/. Then add this to the custom files add-on’s custom_functions.php in the /wp-content/uploads/espresso/ directory: add_action('wp_enqueue_scripts', 'my_custom_script'); function my_custom_script() { global $load_espresso_scripts; if ( ! $load_espresso_scripts ) return; wp_enqueue_script('my-custom-script', content_url('/uploads/espresso/mycustom.js'), array('jquery'), '1.0', true); } This way the JavaScript is in its own file instead of in a template. |
|
The support post ‘Attending multiple event’ 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.