Posted: July 13, 2015 at 11:29 am
|
I am using Multi Event plugin with Januas and PayPal. When you get to Registration-Checkout page it shows blue buttons that cover the test and they are not the correct size. http://johnkalusa.com/registration-checkout/?event_cart=view Also, starting at the home page, when you click on register, it takes you to the event page for a specific city, but when you add a ticket on the event page and click Add To Cart, it takes you to another registration page with 0 as the added tickets, but if you add a ticket, it adds an extra ticket to the cart. |
Hi John, this is a combination of styling from your theme and then Event Espresso. What color would you like that button to be along with the text color? — |
|
|
Thanks for the quick response. Navy Blue Button with White text What about the doubling up of the registrations screens? |
Hi John, could you add this to your child theme or via a plugin like Reaktiv CSS builder? .mini-cart-button.button, .cart-results-button.button, .event-cart-button.button { color:white; } On the events page, that looks like the embed code option. Could you switch it to use the shortcode option? The shortcode button appears near the embed button when viewing an event in the event editor. — |
|
|
Okay that worked! Now, the size of the buttons doesn’t fit the text? |
|
And it still brings the ticket selector back up after I select a single ticket? |
Add width: auto; to the rules Lorenzo provided above, so it becomes: .mini-cart-button.button, .cart-results-button.button, .event-cart-button.button { color:white; width: auto; }
Which event page is this from and is it using the ESPRESSO_TICKET_SELECTOR shortcode? |
|
|
I started with San Diego event Also all the buttons adjusted except the Proceed to checkout button |
There is a couple of strange things happening on your site. If you add events to the cart, then view the cart, you should not see the registration form but just the cart details. Your site shows both – http://take.ms/v3KmTV Have you modified EE at all? Looks like you’ve changed the EE events slug to ee-events (which is fine), but from your home page if you click to view the San Diago event – http://take.ms/DsVD9 Your taken to: http://johnkalusa.com/events/career-search-rescue-san-diego-california-14-15-august-2015/ One you add an event to the cart your taken to: http://johnkalusa.com/ee-event/mission-transition-workshop-san-diego-1230-330pm/ Is that expected? How is the home page event setup to display the event? |
|
|
I had made no changes that I was aware of prior to Alonzo’s suggest to add the CSS generator. However, I did make multiple changes to the events and deleted some, so perhaps the slugs got mixed? Is it as simple as renaming the file ending in 1230-330pm? |
|
When you click on the View Event button on the main page (in the featured box) it takes you to the actual event page in Januas. http://johnkalusa.com/events/career-search-rescue-san-diego-california-14-15-august-2015/ That page displays the ee event I created in ee, so it seems that there is code in the ee ticket selector that directs to the incorrect page? Where would I find that and how do I correct it? |
|
Does it matter that both Event Espresso and Event Espresso MER are activated? |
|
Found this on the Templates page of the San Diego Event. ? This allows you to configure what slug is used for the url of all event pages. Usage of the FHEE__EE_Register_CPTs__register_CPT__rewrite filter has been detected. Please be aware that while this filter is being used, this setting has no affect. |
Hi John, Can you check to see if you have any code running from a custom function that makes use of the FHEE__EE_Register_CPTs__register_CPT__rewrite filter? |
|
|
Josh, this code is in the lib/januas.php file…. function januas_filter_ptags_on_images($content) { return preg_replace(‘/<p>\s*()?\s*()\s*(<\/a>)?\s*<\/p>/iU’, ‘\1\2\3’, $content); add_filter(‘FHEE__EE_Register_CPTs__register_CPT__rewrite’, ‘januas_ee_event_slug’, 10, 2); function januas_ee_event_slug($slug, $post_type) { |
What that code is doing is changing the Event Espresso slug from /events/ to /ee-events/. Can you check with the folks that support the Januas theme to see if they have any documentation on how to use Multi Event Registration with the Januas theme? |
|
|
Thanks, I figured that out after digging in a little deeper. I’ve reached out to Januas but it appears EE4 MER is not integrated fully with the theme yet. I disabled MER and it corrected the issue immediately. The last thing open is the Proceed with Checkout Button is still not showing up in the right size, obscuring the text. Fix for that? |
You can add .spco-next-step-btn to the above CSS selector, so it now becomes: .mini-cart-button.button, .cart-results-button.button, .event-cart-button.button, .spco-next-step-btn { color:white; width: auto; } That should then display the button like this – http://take.ms/VDZvZ |
|
|
That worked! I appreciate all the assistance. |
Great, I’m glad that worked. Just let us know if you have any further questions. |
|
The support post ‘Buttons on Cart Check out page’ 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.