Page 26 of 41 FirstFirst ... 16242526272836 ... LastLast
Results 251 to 260 of 402
  1. #251
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,622
    Plugin Contributions
    123

    Default Re: MailChimp Newsletter Sidebox

    Yes. There are detailed instructions on my web page http://www.thatsoftwareguy.com/zencart_mailchimp.html - the names and titles that MailChimp uses are changed all the time and I don't want to keep updating the plugin to provide that level of detailed documentation; the readme just gets you going at a high level.
    That Software Guy. My Store: Zen Cart Modifications
    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.

  2. #252
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Quote Originally Posted by swguy View Post
    Yes. There are detailed instructions on my web page http://www.thatsoftwareguy.com/zencart_mailchimp.html - the names and titles that MailChimp uses are changed all the time and I don't want to keep updating the plugin to provide that level of detailed documentation; the readme just gets you going at a high level.
    Excellent swguy! That should give me what I need to get it going!

    Thanks...
    Experience is what you get when you don’t get what you want…

  3. #253
    Join Date
    Oct 2015
    Location
    Port Lavaca, Texas USA
    Posts
    29
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    I get an unsecure site error when using mailchimp and Mozilla browser from zencart where I use this program.

    On my main site By directing my site to use http instead of https for the mail list I avoid the blocked padlock icon and warning BUT get a small popup saying site is unsecure.

    I have SSL certificate on site but MailChimp does not support SSL according to many emails between myself and mailchimp support today.

    Why MailCHimp would not work with SSL is really bothering me as you would think they would want the maximum security for me and my customers.

    Is there anything I can do to get rid of the un secure site warning?

    I use 1.5.4 version

    Main site link is here under mailing list popup. This uses the supplied small url that MailCHimp supplies:
    https://ultimatepicklejar.com/ [mail links only work from index page here as I have not changed the rest of the page links to reflect the new signup form]

    https://www.ultimatepicklejar.com/zen-cart6/ this is the store site where I use the MailCHimp Newsletter Sidebox. [ which I can not also set the width to work correctly]
    Last edited by ParseRaider; 29 Feb 2016 at 08:51 PM.

  4. #254
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

    Default Re: MailChimp Newsletter Sidebox

    Quote Originally Posted by ParseRaider View Post
    I get an unsecure site error when using mailchimp and Mozilla browser from zencart where I use this program.

    On my main site By directing my site to use http instead of https for the mail list I avoid the blocked padlock icon and warning BUT get a small popup saying site is unsecure.

    I have SSL certificate on site but MailChimp does not support SSL according to many emails between myself and mailchimp support today.

    Why MailCHimp would not work with SSL is really bothering me as you would think they would want the maximum security for me and my customers.

    Is there anything I can do to get rid of the un secure site warning?
    It's almost certainly the form action part of your \includes\languages\english\extra_definitions\mailchimp_sidebox_defines.php, line 10

    Drop the http:, e.g '//YourSite.us1.list-manage.com/subscribe/post' instead of 'http://YourSite.us1.list-manage.com/subscribe/post'

  5. #255
    Join Date
    Oct 2015
    Location
    Port Lavaca, Texas USA
    Posts
    29
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    Quote Originally Posted by jeking View Post
    It's almost certainly the form action part of your \includes\languages\english\extra_definitions\mailchimp_sidebox_defines.php, line 10

    Drop the http:, e.g '//YourSite.us1.list-manage.com/subscribe/post' instead of 'http://YourSite.us1.list-manage.com/subscribe/post'
    I did and still get error:
    define('BOX_MAILCHIMP_NEWSLETTER_URL','//ultimatepicklejar.us12.list-manage.com/subscribe/post');

    This is line 851 of page source for mail list clicking subscribe with no email address in the box:
    <form action="http://ultimatepicklejar.us12.list-manage.com/subscribe/post" method="POST">

    Adding an email address works but warning is still there.

    I contacted MailChimp and they suggested adding Wufoo service for another $10 a month I guess...

  6. #256
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

    Default Re: MailChimp Newsletter Sidebox

    What is your url with the error?

  7. #257
    Join Date
    Oct 2007
    Posts
    28
    Plugin Contributions
    0

    Default Re: MailChimp Newsletter Sidebox

    I just upgraded my website to the latest version of Zen-cart, and I'm having a bit of trouble getting this mod to work.

    In the file:
    includes/modules/YOUR_TEMPLATE/create_account.php

    Where the line used to read
    $zco_notifier->notify('NOTIFY_LOGIN_SUCCESS_VIA_CREATE_ACCOUNT');
    In Zen-cart 1.5.5 it now reads
    $zco_notifier->notify('NOTIFY_LOGIN_SUCCESS_VIA_CREATE_ACCOUNT', $email_address, $extra_welcome_text, $send_welcome_email);

    if ($send_welcome_email) {
    Can I add the following code in the same place?
    if ((int)$newsletter == 1) {
    mailchimp_add($email_address, $email_format);
    }

  8. #258
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

    Default Re: MailChimp Newsletter Sidebox

    @robraymond

    Yes.

  9. #259
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,622
    Plugin Contributions
    123

    Default Re: MailChimp Newsletter Sidebox

    MailChimp is expiring the API that my integration is based on at the end of the year. Sometime prior to then (hopefully before October) I will update the plugin. I will post back to this thread when it's all done.
    That Software Guy. My Store: Zen Cart Modifications
    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. #260
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,622
    Plugin Contributions
    123

    Default Re: MailChimp Newsletter Sidebox

    This contribution has been updated to support API version 3.0. All other versions will be deprecated after 12/31/16 so please update!
    That Software Guy. My Store: Zen Cart Modifications
    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.

 

 
Page 26 of 41 FirstFirst ... 16242526272836 ... 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