• Resolved smccart

    (@smccart)


    Hi,

    I have made an order form using a repeater that contains Item, Qty, Price.
    The Item currently includes a product number as well as product name, ie.

    “CB2456 | Cablz Flyz Pink 22″”

    However I would like to have a second field to separate the product number from the product name. This doesn’t necessarily need to be in the form itself but is required for the csv attachment so it can easily be entered into our order database, which has separate columns for product name and product number.

    Is it possible to do this somehow?

    I even considered having two hidden fields that copied parts of the item description but couldn’t find a formula for it.

    Thanks in advance,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author EDGARROJAS

    (@edgarrojas)

    Got it, yes the best solution i think would be to add a text field that has this information and then hide it with css you can hide a field with this css code (that you can put in the css section of your form):

    .sfForm #rnField5{
    display:none;
    }

    Replace rnField5 with the id of your field.

    Regards!

    Thread Starter smccart

    (@smccart)

    Hi Edgar,

    Thanks for the quick reply on this
    I can see how this could work but I’m importing all the data from a csv as its quite a lot of items…. so was hoping I could add this in from an extra column in the csv? or possibly a field calculated formula that could grab the just item number?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘multiple fields for order form’ is closed to new replies.