I want to make changeable price with corvid on form

Basically I want to make a changeable price with corvid on form.

This is the page we’ll use: https://www.exweiv.store/video-montaj-siparisi-ver

I want to make a changeable price when they change their answer from the dropdown table I want to change the price.

I’ll give an example from the first area.


If he chooses “Kesilmesi Gerken Bir Sahne Yok” the last option. I want to add 20$ more to the total price. The total price begins with 0 and if they choose the some special answers we’ll add X$, in fact, ₺ but anyway we’ll add X₺ more.

How can I do that?

You can use IF ELSE statements for your task.

Example:

if($w("#dropdown1").value === 'ABCD) {
    let total = Number($w("#price").value) + 20;
    //continue with desired logic
}

Couple this with the dropdown element’s onChange function

When i do that i think also we have to create a payment function ? So can you explain a little bit more please