Snippet: Change Color of Sales Badge


This snippet lets you change the color of a sales badge

Read here to find out about how to add code snippets to your site.
/**
 * Change badge color
 *
 */
function custom_wpsight_get_offer_color( $color ) {

	// possible settings. Choose the one you need and remove the other one if not needed
	$color[ 'sale' ] = '#ff0000'; // new hex code of the color for the badge
	$color[ 'rent' ] = '#ffff00'; // new hex code of the color for the badge

	return $color;

}
add_filter( 'wpsight_get_offer_color', 'custom_wpsight_get_offer_color');

Was this article helpful? Yes · No