Skip to content

Instantly share code, notes, and snippets.

@Steeru
Created April 30, 2018 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Steeru/cde38fefed2a2130bbd8b1a631126469 to your computer and use it in GitHub Desktop.
Save Steeru/cde38fefed2a2130bbd8b1a631126469 to your computer and use it in GitHub Desktop.
function wp_travel_customize_price_display( $s, $c, $d ) {
global $wp_travel_itinerary;
if ( $wp_travel_itinerary->is_sale_enabled() ) {
return $s;
}
return sprintf( esc_html__('N%1s %2s', 'wp-travel' ), $c, $d );
}
add_filter( 'wp_travel_itinerary_price', 'wp_travel_customize_price_display', 99, 3 );
function wp_travel_customize_sale_price_display( $s, $c, $d ) {
return sprintf( esc_html__('N%1s %2s', 'wp-travel' ), $c, $d );
}
add_filter( 'wp_travel_itinerary_sale_price', 'wp_travel_customize_sale_price_display', 99, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment