I would like to disable one action within a workflow.
Does anyone have a work around for this?
Seems like something that should be implemented by Bubble in the action editor. Functionally the equivalent of commenting out some code within a function. For reference, I have an action that sends users a confirmation text, I want to disable it while I am testing. But the use case generalizes.
But if you just want to “comment out” one\two steps of the way to test some things out, then revert it back maybe - making custom events out of those seems to be an overkill.
Just set “only when” to an impossible situation (an expression that always evaluates “no”) — examples:
“No”
Trick answer, you can’t construct this expression in Bubble (aside:there is no good reason for this).
Answers that work:
Current date/time is empty
This URL is empty
(1) create a boolean custom state anywhere with default “no” (2) set the condition to that custom state
There are many other options, but those are the best at the moment (“this URL is empty” is the best for reasons I will leave as an exercise to the reader).