Support

Home Forums Event Espresso Premium Where is my event listing

Where is my event listing

Posted: February 12, 2020 at 3:59 pm


beautifulevents

February 12, 2020 at 3:59 pm

Where do I find my event listings on my website? I cant see them. I want them on a new page that I need to create.


Josh

  • Support Staff

February 12, 2020 at 4:22 pm

Hi,

We’ve received your request for priority support.

The reason that you’re not seeing payment info / registration info is because the event option “Display Ticket Selector” is set to No. If you set that option to yes, then the ticket selector will be displayed, along with its “Register Now” button.

If you’d like to place that ticket selector on a different page other than the one that’s automatically created when you publish an event, you can add the ticket selector shortcode to another page. You’ll add this to any other page on your site:

[ESPRESSO_TICKET_SELECTOR event_id=62862]

I’ll follow up with a second, private, reply that includes the URL to the event you’ve published.


Josh

  • Support Staff

February 12, 2020 at 4:22 pm

This reply has been marked as private.


beautifulevents

February 12, 2020 at 4:28 pm

Where do I change the “Display Ticket Selector” and “Register Now” please? I cant seem to locate it!


beautifulevents

February 12, 2020 at 4:33 pm

I am so sorry I do not understand how to create a page that is dedicated to just selling tickets on my website – I want to create a page called BUY TICKETS and have the Event Espresso ticket listings appear there.. How do I do that please?


Josh

  • Support Staff

February 12, 2020 at 4:50 pm

Where do I change the “Display Ticket Selector”

You go in to edit the event. That’s in your site’s Event Espresso > Events page, then click to edit the one event you’ve set up.

Then, you look over to the right side column for a box that says “Event Registration Options”. You’ll find that setting there.

To create a page, you’ll go to the Pages page of your WordPress dashboard, then click Add New.

Then you can give the page a title, “Buy Tickets” and then you can add the following shortcode to include a list of all your events:

[ESPRESSO_EVENTS]

Then you click Publish.

Please note that since your published event has a publish status of “Private”, no one can see that event unless they’re logged into your website.


beautifulevents

February 12, 2020 at 5:01 pm

Than you – can you confirm what the short code is please? Also – where do I put the shortcode?! Will that automatically list all the events when I create them?

I also bought the grip plug in – how do I add that?


Josh

  • Support Staff

February 12, 2020 at 5:28 pm

Than you – can you confirm what the short code is please?

[ESPRESSO_EVENTS]

Also – where do I put the shortcode?!

You put the shortcode into the page’s content where ever you’d like the list to appear.

Will that automatically list all the events when I create them?

Yes, remember though, you’ll need to click Publish and set the event’s publish status to Public to make it so they’re included in the list.

I also bought the grip plug in – how do I add that?

You’ll follow this guide:

https://eventespresso.com/wiki/events-grid-view-template-add-on/


beautifulevents

February 13, 2020 at 2:45 am

Thank you. My new page Buy Tickets has not appeared… Have I done something wrong?


Tony

  • Support Staff

February 13, 2020 at 3:07 am

This reply has been marked as private.


beautifulevents

February 13, 2020 at 3:13 am

That is the page yes but I thought I created a page that would be visible at the top of my website called “Buy Tickets” but its not there!


Tony

  • Support Staff

February 13, 2020 at 4:14 am

Ok, adding a page to your site will not automatically add that page to your navigation menu as you can have many pages that don’t apply to the main navigation menu.

You can usually alter the navigation menu used on your site in:

Dashboard -> Appearance -> Menus

The name of the manu can be anything and depends on how it was set up, but look for a menu that contains the current items of your navigation menu and edit that.

Then on the left of the page, you’ll see a ‘pages’ section, click the checkbox next to your ‘Buy tickets’ page and click ‘Add to menu’.

That will add that page to your navigation menu, you can drag the items around to change the order.

This may help show this process in more detail:

https://www.wpbeginner.com/beginners-guide/how-to-add-navigation-menu-in-wordpress-beginners-guide/

(Note the above isn’t a feature of Event Espresso, its from WordPress itself)


beautifulevents

February 13, 2020 at 5:53 am

Thank you so much for this! 🙂

Can I add a booking fee to each ticket type I create too – different for each event?


Tony

  • Support Staff

February 13, 2020 at 7:03 am

It depends on how you want it to work.

Would the booking fee be applied on each individual ticket selected (4 tickets = 4 booking fees) or a transaction as a whole (4 tickets + X booking fee)?


beautifulevents

February 13, 2020 at 7:19 am

Thank you – sussed it! 🙂

Next question – can I show tax on tickets even if no tax is to be added but it is included in the ticket price?

Also – how do I remove the author name on the ticket event listing?


Tony

  • Support Staff

February 13, 2020 at 8:21 am

Next question – can I show tax on tickets even if no tax is to be added but it is included in the ticket price?

Sorry but I’m not sure I understand, can you rephrase this, please?

Also – how do I remove the author name on the ticket event listing?

On the single event page is that?

That’s added by your theme rather than Event Espresso.

On your site its adding the event published date and author, do you want them both removed? (The published date is not the event date and so can often confuse users).

Removing just the author can be done with some CSS like this:

.type-espresso_events .post_info_author_holder {
    display: none;
}

Removing all of the ‘post meta’, can be done using:

.type-espresso_events .post_info_top {
    display: none;
}

Add either of those in Appearance -> Customize -> Additional CSS.


beautifulevents

February 13, 2020 at 8:28 am

Thank you. I have put in both codes and tried with the remove all post meta but it still leaves the date… Is there different code I can use?

Also can I put an event name under each box too?


Tony

  • Support Staff

February 13, 2020 at 8:40 am

Which ‘box’?

Can you link me to the specific page you we referring to?


beautifulevents

February 13, 2020 at 8:42 am

This link for example shows the date the event was created – I need to get rid of that…

https://www.beautifuleventsandproductions.com/events/2020-scottish-hotel-awards-gala-dinner/

When I say box I mean the event pictures on the landing page… At the moment you hover over the picture and it tells you the name of the event – I would like it written under the picture…


Tony

  • Support Staff

February 13, 2020 at 8:50 am

This link for example shows the date the event was created – I need to get rid of that…

Ok, your theme is overriding the code I gave you earlier.

Change this:

.type-espresso_events .post_info_top {
    display: none;
}

To this:

.type-espresso_events .post_info_top {
    display: none!important;
}

Just for future reference, that’s the single event output (not really a page but some call it single event page).

When I say box I mean the event pictures on the landing page…

‘the landing page’ doesn’t help as that could be any page on your site.

I’m guessing you mean the buy-tickets page you created earlier and now use the [ESPRESSO_GRID_TEMPLATE] on?

How comfortable with making changes to PHP/HTML are you? You’ll need a custom template to alter that output.


beautifulevents

February 13, 2020 at 8:55 am

Thank you for this – they date has now gone! 🙂

Re the PHP/HTML I have never done that before…?


beautifulevents

February 13, 2020 at 1:44 pm

Is there a way customers can load their ticket to their wallet on their mobile phone?


Josh

  • Support Staff

February 13, 2020 at 4:44 pm

With regards to PHP/html maybe we can avoid getting into editing templates. Instead, you can add the CSS from this snippet into your site’s Customizer’s Addtional CSS page.

Is there a way customers can load their ticket to their wallet on their mobile phone?

I’m not aware of a way to do that, no.


beautifulevents

February 18, 2020 at 8:55 am

Hi, How can I send out free tickets to guests? Is there a way I can do this from the back end instead of them having to do it?


Josh

  • Support Staff

February 18, 2020 at 9:07 am

Hi,

You can follow this guide that shows how to add registrations from the back end/dashboard of your site:

https://eventespresso.com/wiki/manually-add-registrant-wordpress-dashboard/


beautifulevents

February 18, 2020 at 10:30 am

Thank you. Can you tell me if I can link event espresso to Xero – my accounting package?


Josh

  • Support Staff

February 19, 2020 at 9:25 am

Hi,

Currently Event Espresso does not have a way to link to Xero accounting.


Josh

  • Support Staff

February 19, 2020 at 10:21 am

That said, if you use PayPal or Stripe to collect payments, then you could link your PayPal or Stripe account to Xero. You’ll find more information here:

https://central.xero.com/s/article/PayPal-direct-feeds

and here:

https://central.xero.com/s/article/Stripe-direct-feeds

The support post ‘Where is my event listing’ 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.

Event Espresso