IS there a way this can be done? I was using theis script `<script type="text/javascript">
function gform_format_option_label(fullLabel, fieldLabel, priceLabel, selectedPrice, price, formId, fieldId){
//ignore all forms, except the one with ID = 5
if(formId != 5)
return fullLabel;
//ignore all fields except the one with ID = 10
if(fieldId != 10)
return fullLabel;
//changing label
return priceLabel + " " + fieldLabel;
}
</script>`
to try and edit that but I see it only rearranges the fields