Re: MailChimp Newsletter Sidebox
Solved the "Page not found". Thanks to SWGuy, Page #4, #35 reply.
~~~~~~~~~~~~~~~~~~~~~
It is possible that you have the values BOX_MAILCHIMP_NEWSLETTER_U and BOX_MAILCHIMP_NEWSLETTER_ID in mailchimp_sidebox_defines.php backwards. The value BOX_MAILCHIMP_NEWSLETTER_U should be the longer of the two.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ps. SWguy, maybe in your directions put a little note about this. I just copied the first and pasted to the first, ect.... Also, Thanks SWGuy for all your work on Zencart Mods.
Re: MailChimp Newsletter Sidebox
hello -
quick question. i just installed this mod a few days ago and everything with the sidebox works great, but on the create an account page, the email format defaults to "text only" instead of "html" like in the sidebox. any idea on how to fix this?
thanks!
my url: http://www.pangeahandmade.com/shop
Re: MailChimp Newsletter Sidebox
nevermind. i actually figured out that it's not going to work for me at all anyway. i ended up uninstalling the mod, because i couldn't get the thing to work at all.
looks like a great mod and would do exactly what i need it to, but i think i'm too stupid for it. :frusty:
kept getting the mailchimp "page not found" error and went through everything i possibly could to fix it and nothing worked. i read through this whole thread and none of the suggestions worked for me, and i can't have this directing customers to nowhere.
bummed out about this, if anyone has a fix that they can explain to me in detail about how to get it to work and not show an error after you enter an email address in the sidebox and click 'submit', i would be very much appreciative!
Re: MailChimp Newsletter Sidebox
Wow, thanks swguy, this looks like a great contribution!
I'd really like to replace zen cart's default newsletter functions with all the benefits from mail chimp.
However, what I really need to use, is the "group" function of mailchimp. I really need to give my customers the option to chose which subjects they'd like to receive newsletters about. When I read the pre-installation instructions of swguy's module, I read this
"In your Sign-up form, I suggest only having email address; if you want more fields, you'll have to modify this contribution."
I suppose this means that if I'm gonna use the group function, I'd need to modify this contribution?
Please clarify this. I'm not a coder, but I'm definately up for hiring someone if I need to. Thanks
Re: MailChimp Newsletter Sidebox
I am very new to all of this and trying the best I can.
With that being said I have gotten threw all of the instructions for this except one.
Press the Forms link for your new list. This will take you to a screen which will show you your signup form.
Press the "create embed code for small form" link.
It generates code in a box on the left hand side of the screen under the label copy/paste onto your site.
this is step 4 in the instructions but I do now know where I need to copy/paste this to on my site.
help please!!
Lisa
Re: MailChimp Newsletter Sidebox
Please note that the mechanism for pulling in an archive of past campaigns has changed. If you are using javascript that looks like this:
http://www.mailchimp.com/campaign_ar...d=1234&show=10
change it to this:
http://us1.campaign-archive.com/gene...d=1234&show=10
There's a complete list of instructions here:
http://kb.mailchimp.com/article/how-...f-my-campaigns
Re: MailChimp Newsletter Sidebox
Hi Software Guy!
I've installed the Mailchimp newsletter sidebox on my site.
However, I want to change the text of the actual box.
It's currently set to:
Subscribe to our newsletter for periodic updates and valuable coupons.
I'd want to change it to something that doesn't include teh mention to coupons.
Could you please give me the file that I need to edit to change the text?
I've looked in most of the files that I thought the text would be in.
I need this quickly, I'll donate once i can get this working.
Thanks
Re: MailChimp Newsletter Sidebox
./includes/languages/english/extra_definitions/mailchimp_sidebox_defines.php
Re: MailChimp Newsletter Sidebox
How do I change the color of "Subscribe to our newsletter for periodic updates and valuable coupons"
Re: MailChimp Newsletter Sidebox
That particular piece of text is not specifically styled. You could edit
"./includes/templates/template_default/sideboxes/tpl_mailchimp_sidebox.php"
and change
$content .= BOX_MAILCHIMP_PITCH;
to
$content .= '<span id="foo">' . BOX_MAILCHIMP_PITCH . "</span>";
and add
.foo {
styling
}
to your css file.