Posted: December 5, 2013 at 7:53 am
|
Hi there, we have EE running on http://www.ipma2014.com (World Congress). Works fine so far. We have 16 options (prices) to participate at our congress. Its possible to make group reservations. Is it also possible that each person in a group reservation can choose how he will participate? thx in advance, Jur |
Hi Jur, You can use the Multi Event Registration Add-on to add the event to a ‘cart’ allowing you to chose multiple ticket types of multiple quantities and then requesting the registration data. Detaisl are available here https://eventespresso.com/wiki/multiple-event-registration-add-on/ |
|
|
Thank you for handling this issue so fast, it works. Problem is I now have the register button and next to it a line “view cart”. Is it possible to only show “register” but that it would act like “view cart”. Now I have to axplain what the difference is, and the ones who click register still can ad extra people but without the choice of following different parts of our congress. |
It is possible yes but it also depends on were they are using the button and how you intended for them to use it. From looking on your site your here is how I would do it. I am assuming these two options would be separate events? http://www.ipma2014.com/register-for-ipma-2014/ I would either change the ‘REGISTER VAT. INCLUDED’ link to go directly to the event (in this case http://www.ipma2014.com/register/?ee=4) or set the [SINGLE_EVENT] shortcode on the ‘registration-vat-included’ page to display the registration form straight from clicking that button. Then include the [ESPRESSO_EVENTS] within the event description using the direct_to_cart attribute so once Add to cart is clicked it will take them directly to the cart.
With a short descriptions similar to what you have on the page. (only without ‘View Cart’ as it will not be displayed) You could even hide the registration form altogether and force all users to go through the cart, single registrations can still use the cart. Its a better flow for the attendee and does not require any core/code edits. |
|
|
Hmmm I’ll agree that the best option is to force directly to a page where the cart with all options is shown, also for single registrations. ID of the VAT incl event = 4 with event category “INCLVAT” You gave me some options but what should the shortcode look like to put on those 2 pages where I would link to? (register free of VAT works now). THX in advance AGAIN 😉 |
|
[ESPRESSO_CART_LINK event_id=”4″ direct_to_cart=1 moving_to_cart=”Redirecting to cart…”] Shows View Cart on the page but doesnt redirect directly to the cart. Made a testpage: |
All the shortcodes and template variables are available here https://eventespresso.com/wiki/shortcodes-template-variables/ It is not the event ID that you need, rather the event Identifier. (ID is numerical, Idenfitier is a unique code for each event) although both can be used within different shortcodes. For a single event, with all the information including the description/reg form etc you would do the following. Go to the event through the Event Overview. (In this case event ID 4) Copy and paste that shortcode into the page http://www.ipma2014.com/registration-vat-included/ View the page and you’ll see the event. Now add the ESPRESSO_CART link into the description of the event Now you have the event with registration form and an add to cart. |
|
|
thx helped me a bit. Sorry but I think I dont understand what “add the ESPRESSO_CART link into the description of the event” means. I now have: It shows me the word “Register” and nothing more wich is already a great step forward. Clicking it will bring up the Cart wich is also great. But the best would be if I could create my own button with a link behind it wich would directly pop up the Cart. Sorry for not understanding… |
|
You can make the register link into a button by adding some CSS. You can add it using a plugin like My Custom CSS. Check out this site, http://www.cssbuttongenerator.com/ and use the class ee_add_item_to_cart where the generator has the “classname”. |
|
THX for the CSS styling tip works fine. But… now I got the problem like so many have, and with so many solutions to try if I look at the forum. “It looks like you are attempting to refresh a page after completing your registration or your cart is empty. Please go to the events page and try again.” There are 2 URLS wich work fine: NOT working: Wich has [ESPRESSO_CART_LINK event_id=”ipma20141-520-523b06ab4329c” direct_to_cart=1 moving_to_cart=”Redirecting to cart…”] on the page. It works though after you go to the first urls, click view cart, then go back to http://www.ipma2014.com/registrationtest and click register. —— I am more then willing to help you with the Dutch translations of your forms if you could help me out with this all. thx Jur |
|
The event_id attribute in your add-to-cart shortcode should be the id (first column on the event list in the event overview, also the event_id in the url if you click on an event and open it in the event editor), not the unique event identifier in the event editor. |
|
Thx Sidney, will try, but Tony Warwick told to do it with the unique event identifier (read earlier post in this topic). Jur |
|
Put in the ID (4) for the INcluding TAX pricelist and works sofar, but sometimes also the pricelist EXcluding TAX (ID=7) is visible below the one incl. We let some people test today. |
Sorry I should have made my reply clearer. It depends on which shortcode you are using Some shortcodes use ID, some Identifier & some can actually use both. [ESPRESSO_CART] use’s ID. I’m not sure what you mean by
|
|
|
Ok the testpage is: There I use [ESPRESSO_CART_LINK event_id=”4″ direct_to_cart=1 moving_to_cart=”Redirecting to cart…”] After updating to MER 1.0.5 it seems to work. I have made 2 events. One is inlcuded TAX the other is exluded tax. The testpage shows the event included tax (ID = 4) but on some PC I saw it also showed the event exluded tax (ID = 7), most of the times its ok… Please dont close topic yet, we will do some more tests the next days from different OS and browsers. Another thing still not solved but nothing to do with this issue is the “missing” space between in our case EUR and the (price)amount. $org_options[‘currency_symbol’] = ‘EUR’; $org_options[‘currency_symbol’] = ‘EUR. ‘; Like mentioned in some posts but that doesnt work. I dont mind do some hardcoding because ill log everything. I found on cart.php line 1231: echo $org_options[‘currency_symbol’] . number_format($result->event_cost, 2) . $message . ‘ ‘ . $surcharge; Should be possible to add a space there… but hey, i am no coder… 😉 gr Jur |
If the page only contains [ESPRESSO_CART_LINK event_id=”4″ direct_to_cart=1 moving_to_cart=”Redirecting to cart…”] Then it should only ever show the cart link for the event with ID 4. To add a space to that line just use: echo $org_options['currency_symbol'] . ' ' . number_format($result->event_cost, 2) . $message . ' ' . $surcharge; |
|
|
Thx Tony, space is there! Very Happy. |
Hi Jur, I’m just checking to see if everything is working as expected now? |
|
|
Hi Tony, thx for asking. We will have a few people (form outside our company) testing this weekend. If they don’t see any strange things happen we go live with the new pages. Feel free to test yourself I also changed some coding on the invoice page because they have to confirm to end the registration (clear it from any cache). We have about 30-35 congresses a year and are leaving our own custom made cms next year and will turn to WP. We can design/make registration forms in our own CMS we dont know yet If we will ipmlements that part of the CMS into WP pages or will turn to something like EE. So this will be a nice testcase. Jur |
|
Hi, Please let us know if there are any further issues, or if we can close this ticket. If there is no response for a while this ticket may auto close, feel free to open a new one if the issue persists or if there is something else we can help you with. |
The support post ‘group reservations with different payement options’ 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.