Thread Starter
tmask2
(@tmask2)
Ok I got the search functionality working by commenting out some code in my theme’s functions.php, now I just need to figure out how to get the menu to show
/*
function gt_search_filter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','gt_search_filter');
*/
Thread Starter
tmask2
(@tmask2)
Never mind, found the answer. Copied form-edit-account.php to my theme’s folder to override, works great