Carl Gordon
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Theme My Login] Message filterThanks. Will look into it
Forum: Plugins
In reply to: [The Events Calendar] WordPress search bugUnfortunately that didn’t work. Thanks for the help.
Forum: Plugins
In reply to: [The Events Calendar] WordPress search bugNow, if I could only get it to return one result for reoccurring events.
Forum: Plugins
In reply to: [The Events Calendar] WordPress search bugI found the error. There was a problem with my loop in the search.php. Sorry for the inconvenience – I should have checked the theme first. I will give your plugin a good rating 🙂
Forum: Plugins
In reply to: [The Events Calendar] WordPress search bugI’ve just tried it with a different installation of WordPress and it looks to be working. Now the hunt is on to see what’s in my theme or plugins that’s breaking the search
Thanks
Forum: Plugins
In reply to: [The Events Calendar] WordPress search bugI first used WP Extend Search plugin and when that didn’t work I used the following code in my functions.php
function filter_search($query) { if ($query->is_search) { $query->set('post_type', array('post', 'page', 'tribe_events')); }; return $query; }; add_filter('pre_get_posts', 'filter_search');
Viewing 6 replies - 1 through 6 (of 6 total)