Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created September 14, 2016 10:55
Show Gist options
  • Save mgibbs189/1dc2ca1f707fba0057f4508d892cffb0 to your computer and use it in GitHub Desktop.
Save mgibbs189/1dc2ca1f707fba0057f4508d892cffb0 to your computer and use it in GitHub Desktop.
FacetWP - customize EDD Coming Soon label
<?php
function fwp_index_coming_soon( $params, $class ) {
if ( 'cf/edd_coming_soon' == $params['facet_source'] ) {
$params['facet_display_value'] = 'Availability';
}
return $params;
}
add_filter( 'facetwp_index_row', 'fwp_index_coming_soon', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment