Add apostrophe for phone numbers
add_filter( ‘frm_export_content’, function( $cell ) { if ( ‘+’ === substr( $cell, 0, 1 ) && ! cell_is_phone_number( $cell ) ) { return “‘” . $cell; } return $cell; } ); function cell_is_phone_number( $cell ) { $substring = substr( $cell,…Continue reading