Page 3 of 46 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 460
  1. #21
    Join Date
    May 2007
    Posts
    124
    Plugin Contributions
    0

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Quote Originally Posted by lat9 View Post
    In your admin's Configuration->Affiliate Program, what do you have "Affiliate Key Prefix" set to?
    The key is set to CNWR_

  2. #22
    Join Date
    May 2007
    Posts
    124
    Plugin Contributions
    0

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Quote Originally Posted by picandnix View Post
    using the default option links to homepage but you Vann also select a specific product too by using the tool in the box.
    The default option links to "Page Not Found"

  3. #23
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Quote Originally Posted by mikebr View Post
    I'm logged in as a customer. At the tab "Marketing Tools" It says
    HTML Code:
    "Site Link
    
    The following link can be used anywhere you want to promote this site. Copy and paste the HTML code following each image into your blog or web page to link to us."
    That link includes the customer's affiliate ID or the link states <a href="http://www.mysite.com/&referrer=CodedNo...">Gifts for all occasions....</a>

    That link ends up at "Page Not Found"
    It looks like you've got one of the SEO plugins installed as well. In a "standard" Zen Cart installation, the generated link should be of the form
    Code:
    <a href="http://www.mysite.com/index.php?main_page=index&referrer=CNWR_21362757845">Gifts For All Occasions At GiftaDoodle.com</a>
    Looking through the posts in the support thread associated with this plugin's parent, it appears that there are known issues using the affiliates plugins with some (or all?) of the SEO plugins. You might ask in the support forum associated with the SEO plugin that you're using how to include an additional $_GET variable in the URL that they're generating.

  4. #24
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    All users of this plugin, please note that (in the US, anyway) there are tax implications associated with creating an affiliate program for your website. I am neither a lawyer nor an accountant, but you should perform your own due diligence by googling affiliate marketing 1099.

  5. #25
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    v2.0.0 of the plugin is now available in the Zen Cart Plugins area: http://www.zen-cart.com/downloads.php?do=file&id=1635

    I'm preparing (and will submit later today) v2.1.0 with the following changes:

    • BUGFIX: Don't display "Details" button if there are no affiliates (yet).
    • BUGFIX: Payment email to affiliate always shows $0.00.
    • BUGFIX: Approval and payment emails show FILENAME_REFERRER_MAIN for referrer_main page link.
    • BUGFIX: Payment email shows referrer_main as link for "Contact Us".
    • BUGFIX: Pagination on Customers->Referrers was broken. Also, moved maximum number of affiliates to display to a configuration setting.
    • Added a configuration switch to control whether or not a customer receives a commission on purchases made with their affiliate key in their account.
    • Added a configuration setting to identify any Orders Status codes that should not receive a commission.
    • BUGFIX: Disable the "Pay" button if the affiliate's current commission value is 0.
    • "Prettied-up" the account-activation and commission-payment HTML email text.
    • Added validation for the commission-rate entry in Customers->Referrers.
    • BUGFIX: Missed a couple of admin-side language values (details buttons values).
    • If the affiliate's account is not approved, the "Ban", "Pay" and "Update" buttons are disabled.
    • Added a section to the readme identifying how to upgrade from previous versions of the plugin.

    In addition, I've updated the admin-side auto-install to be version-cognizant so that the configuration additions made for v2.1.0 won't disrupt/change any of your existing configuration settings, they're just added to the database!

  6. #26
    Join Date
    May 2007
    Posts
    124
    Plugin Contributions
    0

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Quote Originally Posted by lat9 View Post
    It looks like you've got one of the SEO plugins installed as well. In a "standard" Zen Cart installation, the generated link should be of the form
    Code:
    <a href="http://www.mysite.com/index.php?main_page=index&referrer=CNWR_21362757845">Gifts For All Occasions At GiftaDoodle.com</a>
    Looking through the posts in the support thread associated with this plugin's parent, it appears that there are known issues using the affiliates plugins with some (or all?) of the SEO plugins. You might ask in the support forum associated with the SEO plugin that you're using how to include an additional $_GET variable in the URL that they're generating.
    Ceon's SEO Plugin is installed.

    In the customers account when navigating to 'Marketing tools' The Site Link Generator produces the following code:

    <a href="http://www.mysite.com/?zenid=a9oo496a04v6s5ujt7ts7rgi44&referrer=CNEY_7013629850121">Gifts</a>

    This code does link to the Home Page.

    I understand the standard Zen Cart configuration should produce the following:


    <a href="http://www.mysite.com/index.php?main_page=index&referrer=CNEY_7013629850121">Gifts</a>

    Is there a problem with the generated code?

    The Deep Link Generator Transform Generator Produces the following Code:
    http://www.mysite.com/&referrer=CNEY_7013629850121

    This code is wrong and links to "Page not found"

  7. #27
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Mike, try replacing your copy of /includes/modules/pages/referrer_tools/jscript_tools.php with:
    Code:
    <script type="text/javascript"><!--
    var referrerPrefix = "<?php echo SNAP_KEY_PREFIX; ?>";
    var referrerKey = "<?php echo $referrer->fields['referrer_key']; ?>";
    var link_hint = "<?php echo TEXT_PASTE_LINK_HERE; ?>";
    
    function transform() {
      var textArea = document.getElementById("referrerLinkDump");
      var linkPrefix = '&';
    
      if( textArea ) {
        if( textArea.value.indexOf( "&referrer=" + referrerPrefix ) == -1 && textArea.value != link_hint ) {
          if (textArea.value.indexOf( '?' ) == -1) {
            linkPrefix = '?';
          }
          textArea.value += linkPrefix + "referrer=" + referrerKey;
        }
      }
    }
    
    function removeTip(textArea) {
      if( textArea.value == link_hint ) {
        textArea.style.color = "black";
        textArea.value = "";
      }
    }
    
    function addTipIfBlank(textArea) {
      if( textArea.value == "" ) {
        textArea.value = link_hint;
        textArea.style.color = "grey";
      }
    }
    //--></script>
    If the link contains a '?', the referrer variable will be added with an & otherwise it'll be added with a ?.

    See if that helps.

  8. #28
    Join Date
    May 2007
    Posts
    124
    Plugin Contributions
    0

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Quote Originally Posted by lat9 View Post
    Mike, try replacing your copy of /includes/modules/pages/referrer_tools/jscript_tools.php with:
    Code:
    <script type="text/javascript"><!--
    var referrerPrefix = "<?php echo SNAP_KEY_PREFIX; ?>";
    var referrerKey = "<?php echo $referrer->fields['referrer_key']; ?>";
    var link_hint = "<?php echo TEXT_PASTE_LINK_HERE; ?>";
    
    function transform() {
      var textArea = document.getElementById("referrerLinkDump");
      var linkPrefix = '&';
    
      if( textArea ) {
        if( textArea.value.indexOf( "&referrer=" + referrerPrefix ) == -1 && textArea.value != link_hint ) {
          if (textArea.value.indexOf( '?' ) == -1) {
            linkPrefix = '?';
          }
          textArea.value += linkPrefix + "referrer=" + referrerKey;
        }
      }
    }
    
    function removeTip(textArea) {
      if( textArea.value == link_hint ) {
        textArea.style.color = "black";
        textArea.value = "";
      }
    }
    
    function addTipIfBlank(textArea) {
      if( textArea.value == "" ) {
        textArea.value = link_hint;
        textArea.style.color = "grey";
      }
    }
    //--></script>
    If the link contains a '?', the referrer variable will be added with an & otherwise it'll be added with a ?.

    See if that helps.

    Works Great!!
    Thank You

  9. #29
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    Thanks for letting me know, Mike. Since that change is "global", I'll include it in a future update.

  10. #30
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Snap Affiliates v2.0 for v1.5.0 and later

    v2.1.0 is now available in the Zen Cart Plugins ...

 

 
Page 3 of 46 FirstFirst 1234513 ... LastLast

Similar Threads

  1. snap-affiliates?
    By JohnBoyCR in forum All Other Contributions/Addons
    Replies: 222
    Last Post: 16 Oct 2016, 08:10 PM
  2. v139h Seperate login for sales affiliates and distributors ?
    By respawnedelectronics in forum General Questions
    Replies: 4
    Last Post: 5 Jul 2014, 04:40 PM
  3. v151 snap affiliates bitcoins
    By unckle fester in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 6 Jun 2014, 07:44 AM
  4. Snap Affiliates Module?
    By asauterChicago in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 12 Apr 2013, 09:45 AM
  5. snap affiliates not emailing
    By mindcraft in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Apr 2012, 11:19 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR