• Hi! I’m loving the plugin so far, and considering signing up for AdEspresso too.

    How would I go about setting up setting a new conversion/event for every time someone creates a new account on my WordPress site? Our main landing page asks people to sign up, which creates a new WordPress account, which then redirects them to https://homestudiolessons.com/engineers on successful signup.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Antonino Scarfì

    (@antoscarface)

    Hi,

    to achieve what you requested, you may create a new event in “Conversions/Events” tab of the admin of the plugin, set as page visit for trigger action and the URL where the successful action does.

    In your case, just /engineers is not enough because too generic.

    If the registration is managed by WooCommerce, I suggest you add this code snippet at the end of the functions.php of your active theme: `add_filter(‘woocommerce_registration_redirect’, function($redirect) {
    return add_query_arg(‘success’, 1, $redirect);
    });`

    In this way, after a successful registration, the website should redirect to /engineers?success=1 and so you can set /engineers?success=1 in the URL feed of the event you are creating inside Pixel Caffeine.

    I hope everything is clear, let me know if it helps 🙂

Viewing 1 replies (of 1 total)

The topic ‘Creating a conversion for new wordpress accounts.’ is closed to new replies.