Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created March 7, 2018 23:44
Show Gist options
  • Select an option

  • Save djrmom/280c7cfee24334e430a9b2dae0c9b97c to your computer and use it in GitHub Desktop.

Select an option

Save djrmom/280c7cfee24334e430a9b2dae0c9b97c to your computer and use it in GitHub Desktop.
facetwp add facetwp-template to downloads shortcode
<?php
/** filters download shortcode to wrap text for 0 results in facetwp-template class
** text may need to be adjust to match site setting
**/
add_filter( 'downloads_shortcode', function( $output, $atts ) {
$output = str_replace( 'No Products found', '<div class="facetwp-template">No Products found</div>', $output );
return $output;
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment