Support

Home Forums Community Forum Event Page Customization for Venue

Event Page Customization for Venue

Posted: February 21, 2017 at 2:44 pm


fpulumbarit

February 21, 2017 at 2:44 pm

How do I control the color of the Venue link, under Locations, on the Event Page. It is currently white on white.

Also, is there a way to make the Venue name non-clickable?


Tony

  • Support Staff

February 22, 2017 at 4:26 am

Hi there,

How do I control the color of the Venue link, under Locations, on the Event Page. It is currently white on white.

You would need to use CSS to apply styles to the link, EE uses your themes styling so it will be your theme currently styling the link to be white on a white background, you’ll need to override that.

Something like this:

.espresso-venue-dv h4 a {
    color: #000;
}

Sets the color to black.

Also, is there a way to make the Venue name non-clickable?

There is but you will need edit the templates used by EE into a child theme.

Copy \event-espresso-core-reg\public\Espresso_Arabica_2014\content-espresso_events-venues.php into your child theme and change:

$venue_name = espresso_venue_name( 0, 'details', FALSE );

to

$venue_name = espresso_venue_name( 0, '', FALSE );

OR

You can add pointer-events: none; to the CSS I provided above but that won’t work on all browsers.

The support post ‘Event Page Customization for Venue’ 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