Support

Home Forums Event Espresso Premium Table view path

Table view path

Posted: June 27, 2017 at 5:24 pm

Viewing 7 reply threads


TommyTrojan

June 27, 2017 at 5:24 pm

Hi, I am using the table view, after clicking on the ‘register now’ button, what are the names of the files that make up the next page? I only allow one ticket per purchase so the page for me really just consists of the register button and the event description text. I’d like to know what files make up that page. Thanks.


Tony

  • Support Staff

June 28, 2017 at 5:48 am

Hi there,

I think you mean the single event page. If so its your themes single.php file and EE injects the content into that page.

Is the URL something like domain.com/events/{your-event}/?

What do you want to change?


TommyTrojan

June 28, 2017 at 11:12 am

Yes, my URL looks like the one you noted above. I just want to change the presentation a bit. For example, when an event is sold out, the ninja form appears on that page, I want to add the title of the event to the top of the page, right now it is at bottom.


Tony

  • Support Staff

June 28, 2017 at 11:24 am

Hmmm, that doesn’t sound right. Can you link me to the page so I can view what you mean?

If it is that URL then it’s the single event page and the output is mainly controlled by your theme, the EE contents can be modified using templates for each specific content section however its often overkill for most use cases.


TommyTrojan

June 28, 2017 at 11:27 am

Here is one of the pages, this is the page after clicking register now from the event table view. If the event is sold out, this is what appears, if it is not sold out, a page with the description and another ‘register’ button appears.

http://dev-uscfi.pantheonsite.io/events/the-power-of-presence/


Tony

  • Support Staff

June 28, 2017 at 12:43 pm

Ok, so yes that is the single event page.

The title of the event is already at the top of the page, however you are currently hiding it using CSS – http://take.ms/yuQbQv

Within you My Custom CSS plugin you have:

.entry-title {
   display: none;
}

That CSS is hiding all title for all posts, you can either remove that, make the selector more spefici for the post your want to hide the title for or overide it specifically for EE events using:

.single-espresso_events .entry-title {
    display: initial;
}

The smaller title you are referring to is a message from the ticket selector stating the even it sold out.


TommyTrojan

June 29, 2017 at 12:04 pm

Thank you, that helped out a lot. One more question of course, I was able to hide the message from the ticket selector stating an event is sold out, but I also want to remove the event description from the two registration pages (not the event calendar of course). But when I use this:

.event-content p {
    display: none;
}

It removes the event description but also the message that the form was submitted successfully. Is there a way I can target just the event description on the sold out and register pages?


Josh

  • Support Staff

June 30, 2017 at 11:35 am

Hi Tommy,

If I understand your question correctly, this will target only the sold out events:

.DTS .event-content p {
    display: none;
}
Viewing 7 reply threads

The support post ‘Table view path’ 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