Hi!
I try to use simple, free-version of Reservation plugin of WordPress.
And i have problem with calculation.
* I have baseprice – 100
* I have 2 dates – “from” and “until”.
* I have option field described as [price select Title “0:0,1:10,2:20” pn]
That field is determined to calculate per period day, added “pn” to the end
It calculates correctly in form.
For example “2 days” and “option 1” – 2days*baseprice + 2days*optionfield_value_price = 2*100 + 2*10 = 220
But AFTER form SUBMIT, it omits ALL other periods BUT last – so it becomes = 2*100 + 1*10 = 210
In Reservation system admin there are rows:
date1 – baseprice 100
date2 – baseprice 100
option – 10
total = 210
BUT it should list like:
date1 = baseprice 100
option = 10
date2 = baseprice 100
option = 10
total = 220
Is it BUG or am i doing something wrong here?
Thank you very much for help!