mmlmitchell β created an issue.
I am interested in the answer to a question raised in the original post about "VBO Multiple-at-Once."
How do I get the values from a specific field contained in [event:queue]?
For example, I have a content type with a field called: field_description.
I tried [event:queue:field_description], but it did not work.
Any help would be appreciated!
I am also getting the same PHP errors using the OpenAI ECA sub-module. Using the "proposed resolution" above (i.e., replace tokenServices with tokenService), I was able to resolve the errors and make use of the sub-module.
Same problem as described, for me it was "user_role" like described #7 above. My solution was to export all my "reaction rules" and save each locally; then uninstalled rules and Drupal core 10.3 updated perfectly. while not a perfect fix, it keeps my site open. I wish I could help develop a solution, but I don't have that skill set. Coforting to see that I am not the only person with this problem.
While I see this issue is 4 years old, I have the same issue with VBO 4.2.5.
I need to pass the value of the "contextual filter" from the View (which in my case is a Group ID) through to the VBO action form as a URL parameter (i.e. "group=[value]").
The current URL that redirects to the "confirgure" page is this:
/views-bulk-operations/configure/[search_id]/[page_id]
What I need is this:
/views-bulk-operations/configure/[search_id]/[page_id]?group=[value]
Note, "group" is the name of the parameter, "[value]" is the Group ID from the contextual filter.
I've tried to use Trevor's solution in a custom module, but it's not working. I think the three things need to happen:
- Get the value from the contextual filter on the View,
- Create the parameter with value, and
- Amend the redirect URL with the parameter
Any hints, suggestions, and idea would be appreciated.
Thanks!