Created
September 14, 2016 10:55
-
-
Save mgibbs189/1dc2ca1f707fba0057f4508d892cffb0 to your computer and use it in GitHub Desktop.
FacetWP - customize EDD Coming Soon label
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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