Hello,
To remove ‘From’ before price in single trip page, please add following given code in functions.php file of your child theme.
function wp_travel_customized_strings( $strings ) {
$strings['from'] = __( '' , 'wp-travel' );
return $strings;
}
add_filter( 'wp_travel_strings', 'wp_travel_customized_strings' );
For detail assistance regarding creating child theme, please refer below given link:
https://wptravel.io/how-to-create-a-child-theme/
If you have any queries further, let us know.
Thank you.
Hello,
Glad that we could help you.
Also, we would really appreciate if you could provide us feedback as well as help us by rating our plugin by following the link below:
https://wordpress.org/support/plugin/wp-travel/reviews/
If you have qny queries further, let us know.
Thank you.