Hi there,
I wrote in my last ticket tis: there is an issue when you search for an event.
Example: you search for an event called “juan pablo” (take a look) http://screencast.com/t/qpxJiDLBBl
And then nothing happens, it shows you the calendar of the actual month. This is really important for the use of my Events. My visitors need to have an easy and effective way to find the event the want, even the old ones.
Brook answered me:
This should be doable by inserting the following code into your theme’s functions.php :
/**
* Removes time
*/
function tribe_remove_time_list_view( $settings ) {
if( ! tribe_is_upcoming() && ! tribe_is_past() ) return $settings;
$settings[ ‘time’ ] = false;
return $settings;
}
add_filter( ‘tribe_events_event_schedule_details_formatting’, ‘tribe_remove_time_list_view
So I did this, and it did a fatal error to my page,
this one:
Parse error: syntax error, unexpected ‘;’ in /home/brunohm/public_html/wp-content/themes/Newspaper/functions.php on line 166
I contacted my host support, and the problem was when I pasted that code, seems it caused conflict with the theme.
Can you help me to fix this with out killing my web site?