I’ve just changed the prices for a coffee roaster in a drop down menu in a form block, and then published. The new prices are live but in the form submissions that he receives via email (and showing in settings) the prices haven’t changed??
I’ve done this a couple of times now (the site is 3+ years old) and both previous times without a problem. Below are a couple of screen shots; one showing the designer (published twice now) and one from the forms submitted in site settings showing a different price??
URL is https://www.seecrowfly.com The correct prices are listed to the public on the website (look up the “how to buy” or “order” buttons on the landing page), as they are in Webflow designer but the notification email the client receives they are still the previous number.
But is there a way to edit this code in Webflow? I just found that there is a paid Finsweet extension, that could allow it (still in beta?), but hoping for a simpler way.
Do a test on this, but you might be able to avoid that in the future by leaving the value field blank. In that situation, Webflow may automatically use the name, even when you change it.
If you try it, check the HTML as above- you want either no value attr, e.g.
<option>250g $20</option>
Or if Webflow generates a value anyway, you want it to always match the name, so try editing the name and see if the ( blank in Webflow ) value auto-updates.
You do NOT want…
<option value="">250g $20</option>
But even if you got that HTML output, test the email notifications to see if Webflow overrides it with webflow.js.