Page 12 of 41 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 403
  1. #111
    Join Date
    Nov 2007
    Posts
    342
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    I love this one!! Thank you!

    Quick q:

    What files I need to mod to ad an extra field (like First Name)?

    Thanks!
    Gabstero.

  2. #112
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: MailChimp Newsletter Sidebox

    The Chimps have been at it again - please update to the latest version of this contrib if you are having signup issues; the way the parms are passed in was changed.

    http://www.zen-cart.com/index.php?ma...roducts_id=632
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #113
    Join Date
    Jan 2011
    Posts
    83
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Is there a possibility to change the subscribe button in the Mailchimp sidebox?
    I want to have the same look as my other buttons

  4. #114
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: MailChimp Newsletter Sidebox

    RIght now it's not really a button (as in an image) - it's just rendered by the browser. You could change this but you'd have to change some code in the template.

    ./includes/templates/template_default/sideboxes/tpl_mailchimp_sidebox.php
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #115
    Join Date
    Mar 2005
    Posts
    372
    Plugin Contributions
    0

    help question Re: MailChimp Newsletter Sidebox subscription

    $(document).ready(function(){ try { $('#archive-list li:even').addClass("odd"); $('.field-group, .field-group input, .field-group select').live('click',function(event){ if (event.type == 'click') { if ($(this).hasClass('field-group')){ var fg = $(this); $(this).find('input, select').slice(0,1).focus(); } else { var fg = $(this).parents('.field-group'); $(this).focus(); } fg.not('.focused-field').addClass('focused-field').children('.field-help').slideDown('fast'); $('.focused-field').not(fg).removeClass('focused-field').children('.field-help').slideUp('fast'); } }); // Allow select inputs to be width:auto up to 500px (because max-width doesn't work in IE7) $("select").each(function(){ $(this).css("width", "auto"); if($(this).width() > 500){ $(this).css("width", "500px"); } }); } catch(e){ console.log(e); } });

    After you hit subscribe and the email is sent back to confirm this code is generated.

    How do you get rid of this?

    C

  6. #116
    Join Date
    Mar 2011
    Location
    In a green and pleasant land
    Posts
    46
    Plugin Contributions
    0

    Idea or Suggestion Re: MailChimp Newsletter Sidebox

    Quote Originally Posted by gabstero View Post
    I love this one!! Thank you!

    Quick q:

    What files I need to mod to ad an extra field (like First Name)?

    Thanks!
    Gabstero.
    There appear to be two files needed to add names

    You need to change includes\templates\template_default\sideboxes\tpl_mailchimp_sidebox.php

    Where it says

    $content .= ENTRY_EMAIL_ADDRESS;
    $content .= '<input type="text" name="EMAIL" value=""><br />';

    change it to

    $content .= ENTRY_EMAIL_ADDRESS;
    $content .= '<input type="text" name="EMAIL" value=""><br />';
    $content .= ENTRY_FIRST_NAME;
    $content .= '<input type="text" name="FNAME" value=""><br />';
    $content .= ENTRY_LAST_NAME;
    $content .= '<input type="text" name="LNAME" value=""><br />';


    This will deal with the box layout

    Now you need to get the data to Mailchimp

    This happens in includes\functions\extra_functions\mailchimp_functions.php

    change line 2 from
    function mailchimp_add($email_address, $email_format) {

    to

    function mailchimp_add($email_address, $fname, $lname,$email_format) {


    This appears to make sure that Mailchimp automatically fills in the bare bones details....

    However do make sure the fields FNAME and LNAME do appear in the list you are working with

  7. #117
    Join Date
    Mar 2011
    Location
    In a green and pleasant land
    Posts
    46
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Sorry the path for this should be

    includes\templates\YOUR_TEMPLATE\sideboxes\tpl_mailchimp_sidebox.php

  8. #118
    Join Date
    Jul 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Hi,

    I just added this addon and I think it is all working ok.

    Quick question...

    Does it take a while for customers who have subscribed through the create account page to be added to the mailchimp list?

    I created a dodgey account but nothing is showing in my mailchimp subscriber list.

    Thanks in advance

    Amanda

  9. #119
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: MailChimp Newsletter Sidebox

    Customers who have already created an account need to be manually added; they are not added retroactively.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #120
    Join Date
    Jul 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Thanks. I guessed that I would have to import my existing subscribers, but new customers don't seem to being added when creating a new account.

    I did a test with the sidebox, which worked fine and added the subscriber.

    So this is only when creating a new account and subscribing through the create account page.

    Amanda

 

 
Page 12 of 41 FirstFirst ... 2101112131422 ... LastLast

Similar Threads

  1. v150 Newsletter Sidebox & Newsletter signup
    By meljen in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 28 Nov 2012, 09:44 PM
  2. Login page->Newsletter->Mailchimp
    By Happyworker in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 23 Jun 2010, 10:41 PM
  3. Anyone know how to add field for Mailchimp to sidebox?
    By daneh in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 16 Sep 2009, 04:40 PM
  4. Adding a user to a MailChimp newsletter?
    By fabiola-and-singsing in forum General Questions
    Replies: 3
    Last Post: 16 Feb 2009, 10:07 AM
  5. Stop Sidebox header from linking - MailChimp
    By Mickmo68 in forum Addon Sideboxes
    Replies: 2
    Last Post: 21 Nov 2008, 05:54 AM

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