I have a workflow that is trigger on a button press to hide a button. This works fine, until the page is reloaded, then it is visible again. How can I hide it from the user permanently?
Hey @morgant6911 one way is to store the information on the User within a field. Iâm not sure what the best name for this field would be, but it could be something along the lines of:
âDisplay Buttonâ (Type: yes/no, List: No, Default Value: yes).
This fieldâs value would change from yes to no in the workflow youâre using to hide the button by âMaking Changes to a Thing --> Thing to Change: Current User --> Field to Change: Display Button = noâ.
Then in the conditional formatting of that button you could use:
When Current Userâs âDisplay Buttonâ is no --> this element is not visible.
And vice versa:
When Current Userâs âDisplay Buttonâ is yes --> this element is visible.
*Set the button to not be visible on page load and this should work
Thanks, that really helped. I had to do it in a slightly different way, but that did the job perfectly.
Awesome No problem!
Our approach is to HIDE all elements (groups) by default, and use CONDITIONAL to show it. Itâs kind of easier and safer.
And we use TOGGLE to on-off all elements.
Me ajudou bastante. Thank you so much!