Advertisement
Guest User

Events Calendar // Change No Results Notice

a guest
Dec 8th, 2014
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // Changes the no results notice in The Events Calendar
  2. add_filter( 'tribe_events_the_notices', 'customize_notice', 10, 2 );
  3.  
  4. function customize_notice( $html, $notices ) {
  5.  
  6. // If text is found in notice, then replace it
  7. if( stristr( $html, 'There were no results found.' ) ) {
  8. // Customize the message as needed
  9. $html = str_replace( 'There were no results found.', 'Your custom notice goes here.', $html );
  10. }
  11.  
  12. return $html;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement