(u must be logged in to see it)
I am trying to:
i've put a conditional group to show certain inputs according to the value of a radio button "Mon Plan" (Pro,Gold or Platinium) with values in the database accordingly (100,200 and 300), u find it here :
hidden link
Link to a page where the issue can be seen:
hidden link
I expected to see:
to see the form and the conditional group since in my test case it matches the condition (Mon Plan = 100)
Instead, I got:
The conditional groupe shows but disappears in a second !
Hi,
Thank you for contacting us and I'd be happy to assist.
I noticed that the "Mon Plan" field wasn't included in the form. The way conditional field group works, the field used for conditional evaluation, needs to be included in the form.
To make this work, you can follow these steps:
1. Please include the "Mon Plan" field and the conditional field group will function correctly.
2. If you don't want this "Mon Plan" field to be available for editing, you can hide it, by adding some custom CSS code in the form's "CSS editor":
label[for*="mon-plan"],
.js-wpt-field-items[data-item_name*="mon-plan"]{
display: none;
}
I hope this helps and please let me know if you need any further assistance around this.
regards,
Waqar
My issue is resolved now. Thank you!