I am building a multi-page small online quotation engine using Gravity forms
The user enters in numbers into input boxes.
Based on these numbers, I have enabled a calculation in another input box which I just want to pass its value to page 2.
I do not want this input box / calculation to be visible to the user, but I want it to remain there so that I can create a shortcode which accesses it's value in page 2.
As such, I changed it's visibility to Admin Only. The problem with this is that when it is admin only, then my shortcode cannot pick up the calculation. When the visibility is set to public, the shortcode does pick up the calculation.
Is there a way I can just make that particular input field hidden in CSS or invisible?
<li id="field_4_15" class="gfield" style="">
...
...
</li>
I have also tried adding css class name of gf_hide and then used the following CSS but
.gf_hide {
visibility: hidden;
display: none;
}
visibility hidden and display none dont seem to work for me either.