Guest User

Untitled

a guest
Mar 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. /** filters download shortcode to wrap text for 0 results in facetwp-template class
  3. ** text may need to be adjust to match site setting
  4. **/
  5.  
  6. add_filter( 'downloads_shortcode', function( $output, $atts ) {
  7. $output = str_replace( 'No Products found', '<div class="facetwp-template">No Products found</div>', $output );
  8. return $output;
  9. }, 20, 2 );
Add Comment
Please, Sign In to add comment