• Resolved guiberlin

    (@guiberlin)


    Hi there,

    I have a simple question, but I can’t seem to find an answer to it. Is it possible to change the order of actions?

    I have a use case where I’d like to insert a filter with the formatter (in the pro version) before my last action (where the issue arose). However, if I’m not mistaken, it doesn’t appear to be possible. Am I correct in my understanding?

    Thank you in advance!
    Gui

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Uncanny Owl

    (@uncannyowl)

    Hi @guiberlin , great question, and the answer does depend on some recipe elements, like loops can’t be moved, if something is scheduled or delayed then the location is fixed based on time, the user selector (if applicable) location is fixed, etc.

    Hover over an action, condition or something else in the action section, and if it can be moved, you’ll see this icon to the left of it: https://cln.sh/19QVcDTb. Click and hold your mouse cursor on that, then drag the action or condition group to wherever you want it instead.

    If you think it is something that should be able to be moved but you can’t do it, it would be great to see a screenshot of the recipe so we can validate it.

    Thread Starter guiberlin

    (@guiberlin)

    Hi, thanks for the quick answer ??

    I can’t reorder my actions unfortunately. On the screenshot below, between a webhoook to make and the formater but I have the same issue with Hubspot.

    Thanks!

    Plugin Contributor Uncanny Automator

    (@uncannyautomator)

    Hi @guiberlin ,

    You won’t be able to drag and drop actions unless they’re fully added, so it won’t work while you have the drop-down showing. Even if you just add temporary data first, make sure the action is closed (i.e. some kind of selection is made so you don’t see that Cancel button) and then try dragging and dropping.

    Thread Starter guiberlin

    (@guiberlin)

    Hi,
    no, I confirm, I can’t drag and drop action in that case.

    Plugin Contributor Uncanny Automator

    (@uncannyautomator)

    Hi @guiberlin , that is strange. Our front end team reviewed your ticket and we’re not able to reproduce it, so it would help to confirm plugin versions and other details via the system report under Automator > Status in /wp-admin/ (remove any URLs).

    Since this is related to our Pro plugin specifically, it would help to send the system report via a ticket on our website. That’s where we normally provide support to Pro users and it’s easier to get it in front of our developers.

    Thread Starter guiberlin

    (@guiberlin)

    Hi,

    I just opened a ticket, thank you ??

    Plugin Contributor Uncanny Automator

    (@uncannyautomator)

    As an update, we were able to confirm that the issue was related to the theme loading assets on other plugin pages. In case something similar happens to anyone else, we provided this code to de-enqueue the theme’s assets from our recipe page (which could be added to the functions.php file of the child theme):

    /**
     * Uncanny Automator
     * Dequeue conflictive select2 assets
     */
    add_filter( 'automator_conflictive_assets', function( $assets ) {
        if ( 
            ! is_array( $assets ) || 
            ! isset( $assets[ 'scripts' ] ) || 
            ! isset( $assets[ 'styles' ] ) )
        {
            return;
        }
    
        $assets[ 'styles' ][] = 'ot-admin';
    
        return $assets;
    } );
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change actions order’ is closed to new replies.