Show progress bar text with percent sign
add_filter(‘frm_chat_progress_text’, ‘frm_chat_show_percent_sign’, 10, 2); function frm_chat_show_percent_sign( $text, $form ) { $target_form_id = 225; // change 225 to your form ID. if ( $target_form_id === (int) $form->id ) { return ‘[current show=percent]%’; } return $text; }Continue reading