Hiding the Currency Symbol in WPForms Total Field
/** * Hide currency symbol in WPForms. */ add_filter( ‘wpforms_currencies’, function( $currencies ) { $form_data = wpforms()->obj( ‘process’ )->form_data ?? []; if ( empty( $form_data ) ) { $frontend = wpforms()->obj( ‘frontend’ ); if ( ! empty( $frontend->forms ) )…Continue reading