Ticket for: Post Grid
0
Ryan Tyler
Hello, I am using your plugin along side Search & Filter, and it works great. However when the some of the filters are selected together it returns no result as expected. What I would like to do is change the words 'No Post Found' to something else. How do I do this?
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum.
you can do this by filter hooks, please add following code to your theme functions.php file
add_filter('post_grid_no_post_text', 'post_grid_no_post_text', 10);
function post_grid_no_post_text($text){
$text = 'Sorry! no post';
return $text;
}
Let me know the result.
Regards 
Thanks! This worked.