I have a RSform!Pro which is working great except for... I need to apply a 50% discount if people select a certain option in a radio button group. I'm using a code that should work as I found it in RSJoomla forum and they say it works. But not for me:
$amount=$_POST['form']['rsfp_Total'];
if($_POST['form']['form[my_radio_button_group]'] == 'option 1')
$_POST['form']['rsfp_Total'] = $amount - 50%;
I also tried this, but nothing still...
if($_POST['form']['form[form[my_radio_button_group]'] == 'option 1')
$_POST['form']['form[Total]'] = $_POST['form']['form[Total]'] - 50%;
Any help?