CheckBox, Radio, MultiSelect duplicate values

This topic contains 17 reply and 12 voices, and was last updated by Sk 9 years, 7 months ago
Viewing 15 Posts - 1 through 15 (of 17 total)
Author Posts
September 5, 2014 at 5:01 pm 26347
Sk Hello, Just bought this great Plugin!! but i have a little problem i Have a Registration Form with: a RADIO field with some options (Student, amateur , Pro) and then later in the same form I have a CHECKBOX field with other options ( light, medium, hard ) when I save the form (from the backend) the latest CHECKBOX field gets all the options of the RADIO plus the options I insert, so it became: RADIO (Student, amateur , Pro) CHECKBOX (Student, amateur , Pro, light, medium, hard ) ?? I also tried using a multiselect, the problem is the same If I add another field of type CheckBox or Radio or MultiSelect AFTER them this one gets also ALL the options from previous fields! so i have RADIO (Student, amateur , Pro) CHECKBOX (Student, amateur , Pro, light, medium, hard ) ?? OTHER CHECKBOX (Student, amateur , Pro, light, medium, hard, apple, banana, pear ) ?? is like they get Grouped ! I'm on Wordpress 4.0 latest plugin version 2.2.4 sorry for my English, hope I explained the problem! Can you help me pleasE? I don't want to touch your core files :) thank you very much!
September 5, 2014 at 11:48 pm 26358
Pamela Pamela

Experienced the same problem. Please help us.

September 6, 2014 at 4:40 am 26367
David David

Likewise, same issue.

September 6, 2014 at 4:58 am 26368
Rob Muller Rob Muller

Same issue. Just started too, must have come from the last update!

September 6, 2014 at 5:02 am 26369
Mahi Mahi

Team working on this …. should be a quick fixer or update available later today.

sorry for inconvenience.

PS: Rob is right. its coming from latest version.

September 7, 2014 at 4:24 pm 26399
Christian Christian

Please do you have a fast fix to apply waiting for the new version?
I really need to find a fix ASAP!

thank you

September 8, 2014 at 1:55 am 26437
Mark Mark

Agree need this fix very badly, right now the plugin is a brick…

September 8, 2014 at 8:28 am 26449
Wade Wade

Conditional logic isn’t working within the forms either.

September 8, 2014 at 2:06 pm 26459
Sekander Badsha Sekander Badsha

Hello All,
I have notified the developer team about this and they’re working on it. Please keep calm, we’re trying to fix it ASAP.

September 8, 2014 at 10:44 pm 26491
jose carlos jose carlos

Hi guys, great plugin! I just bought it but also having the same issue with checkbox/dropdown replication, hopefully this gets solved soon.

September 9, 2014 at 12:07 pm 26516
kiwi kiwi

Plus 1 – need an urgent fix for this also.

September 11, 2014 at 5:56 am 26627
David David

I think I found the issue.
wp-content/plugins/wp-user-frontend-pro/admin/form.php

Basically, seems like it was loading all options values into a single variable.

Line 1402

Replace:

$view_option[$opt_value] = $options_value;

with

$view_option[$key][$opt_value] = $options_value;

Line 1405

Replace:

$_POST['wpuf_input']['options'] = $view_option;

with

$_POST['wpuf_input'][$key]['options'] = $view_option;

September 11, 2014 at 11:01 am 26637
RJ RJ

Tried your solution David, but in my case, it replaced all my options with the word “Array” so it’s not working for me.

Support people – really need an urgent solution to this, are you guys any closer?

If not, what is the best way for me to revert back to the older version of the plugin without losing my forms or any other data? Please help!!

September 11, 2014 at 1:11 pm 26647
Christian Christian

Hello Dev Team,

I’m very disappointed with the support..

I bought the plugin ,
I didn’t want to just download a cracked version and using it
because I believe that developers (like me) deserves money for their good work
and ALSO because i wanted some SUPPORT..

I opened this post 6 days ago
there is a HUGE SEMI-BLOCKING BUG on your plugin,
and after this time we did not get a solution, an hack, or an answer to solve the problems

this is not a good way of support customers..
I’m really sorry but the plugin could be 5 stars
the support is 1 (or zero) for me..

thank you

September 11, 2014 at 7:08 pm 26685
David David

Sorry, I left something out when I posted my code.

wp-content/plugins/wp-user-frontend-pro/admin/form.php

Line 1402

Replace:

$view_option[$opt_value] = $options_value;

with

$view_option[$key][$opt_value] = $options_value;

Line 1405

Replace:

$_POST['wpuf_input']['options'] = $view_option;

with

$_POST['wpuf_input'][$key]['options'] = $view_option[$key];

I forgot to put the extra [$key] in the last line with $view_option. That’s why it was showing Array..

Try that and it should work.

September 11, 2014 at 7:39 pm 26691
RJ RJ

Thank you SOOO much David!!!! That worked, and just in the nick of time – presenting this site in a meeting in about 20 minutes!

WeDevs Support – you disappoint.

Viewing 15 Posts - 1 through 15 (of 17 total)