How to Integrate An Affiliate's Getresponse Account On Page?

3 replies
  • WEB DESIGN
  • |
Please point me to the right place on this forum if I'm not where I should be posting.

I have a website that I would like to use for my affiliates, but I want to give them the ability to use their own GetResponse account. I've seen how other affiliate programs just require the affiliate's campaign name and then they can use the form.

The website I want to create is a wordpress install with optimizepress on it. I'd like it to default the form code to me unless the affiliate enters their own web form id.

Has anyone done this? If so what plugins and custom fixes did you require?

Advice pertaining to this topic would be greatly appreciated.

Thank you very much!
#account #affiliate #getresponse #integrate #page
  • Hi,

    One of the options is to create a simple script in PHP.
    The script retrieves the ID from the $_GET variable and then paste it into a web page.
    Example:
    1. Ask GetResponse does it comply with their rules
    2.You create website http://example.com/affiliatepage/ with GetResponse form.
    3. Then your affiliate have link: http://example.com/affiliatepage/?id=webform_id
    4. Script put webform_id in website:
    Code:
    <input type="hidden" name="webform_id" value="<?php echo $ id; ?>" />
    Of course, you still need to protect the variable (filter dangerous characters).

    Hmm... but you need to check if it will work.

    If you do not have programming skills, outsource this ;-)

    Best Regards,
    Arthur
    {{ DiscussionBoard.errors[10314484].message }}
  • Profile picture of the author tonybianco
    Hi Arthur, great suggestions. However what I'm needing is that their affiliate name is different than their list name.

    What I'm looking for is something where they can set up an affiliate name and then within the admin can input their list name. This way if they ever change their list they don't have to change their affiliate name.

    This might be a custom programming thing I'm starting to think. But I was hoping I could find an out of a box plugin.
    {{ DiscussionBoard.errors[10316820].message }}
  • Hi,

    So you can create two variables:
    1. http://example.com/affiliatepage/?id=webform_id&affiliate=HERE
    2. In code:
    Code:
    <input type="hidden" name="webform_id" value="<?php echo $ id; ?>" />
    <input type="hidden" name="affiliate" value="<?php echo $ affiliatename; ?>" />
    3. In GetResponse you create custom field and then in emails you put links with affiliate ID,
    for example:
    http://example.com/yourlink?ref={affiliatename}
    4. People will input affiliate ID and list name = all process is automated ;-)

    Best Regards,
    Arthur
    {{ DiscussionBoard.errors[10345365].message }}

Trending Topics