• Resolved lustek

    (@lustek)


    Hi,

    I really like your plugin. Is it possible to add extra feature in it? I would like to track custom parameters from affiliate networks I work with. Could you please add a screen in wp-admin to define them?

Viewing 1 replies (of 1 total)
  • Hi @lustek , Vinay here.
    I’m glad you liked the plugin. I loved your suggestion to add custom parameters for tracking via UI. However, we have it via code if you need it on urgent basis.

    add_filter("utmforwoo_parameters", "utmforwoo_extra_params");

    function utmforwoo_extra_params($parameters){
    array_push($parameters, "custom1", "custom2");
    return $parameters;
    }


    You can put above code in your child-theme’s functions.php file.
    Make sure to replace the custom1 and custom2 with parameters you want to add.

    Thank you once again and don’t forget to rate the plugin ??

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.