Support

Home Forums Event Espresso Premium Events List category search not working

Events List category search not working

Posted: January 30, 2014 at 11:35 am


Peter Holm

January 30, 2014 at 11:35 am

Hi
I have a List of courses page that contains [EVENT_CUSTOM_VIEW] and produces a list of events. The category search isn’t working however it does work on the calendar so I’m assuming the config is correct. Here is the link: http://www.dev1.daveandrew.co.uk/list-of-courses/

My second question is how can I reduce the width of the events calendar drop down boxes for category and venue? They always seem to be longer than the screen, no matter what device I view them on.
Here is the link: http://www.dev1.daveandrew.co.uk/course-calendar/

Thanks in advance. Its a very nifty product.
Cheers


Sidney Harrell

January 30, 2014 at 2:46 pm

In plugins/espresso-custom-templates/templates/events-table/index.php, change line 93 to:

<tr class="espresso-table-row cat-<?php echo str_replace(',', ' cat-', $event->category_id); ?>">


Peter Holm

January 31, 2014 at 7:30 am

Thanks Sidney that worked great.
Can anyone help with the second problem of the calendar size. Thanks in advance


Tony

  • Support Staff

January 31, 2014 at 7:51 am

Hi Peter,

This is actually due to your theme. Within the themes style.css file line 327 is this:

media="all"
input, select, textarea {
background-color: #fff;
border: 1px solid #ddd;
color: #999;
font-size: 14px;
font-size: 1.4rem;
font-weight: 400;
padding: 16px;
padding: 1.6rem;
width: 100%;
}

What that does it select ALL input, select and textarea elements and among-st other settings, sets the width to be 100% of its containing element.

I would contact theme’s developer to have this either removed, or correctly applied where needed.

As a bandaid fix, you can override the setting using:

.ee-filter-form select {
width: auto;
}

Which applies specifically to those dropdowns. However you may find other areas in which the themes rule will cause more issues, so would be best contacting them to update this all the same.


Tony

  • Support Staff

January 31, 2014 at 7:53 am

I should mention, you can apply the above fix using a plugin such as My Custom CSS

The support post ‘Events List category search not working’ 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