Hi @janakasajith
Thank you for your question. For now I can only give you a quick fix, I hope your comfortable with editing the files, as this is the only solution I can give you for now, I will make sure to address this issue in the future updates.
What you are required to do is on the file wp-content/plugins/cf7-ui-slider/includes/slider-tag.php
and wp-content/plugins/cf7-ui-slider/includes/range-slider-tag.php
Please add the following line of code after line number 69
if ( preg_match( "/&/", $atts['prefix'] ) ) {
$atts['prefix'] = html_entity_decode( $atts['prefix'] . ';' );
}
And now in the prefix you can add the “pound symbol” simply by typing £
Here is an example code
[cf7_ui_slider cf7_ui_slider-3 id:test min:0 ui_default:8 max:77 prefix:£ step:3]
Please do let me know if this works for you or not