Page 1 of 9 123 ... LastLast
Results 1 to 10 of 1165

Hybrid View

  1. #1
    Join Date
    May 2005
    Location
    England
    Posts
    740
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Hiya,

    Thanks for getting back to me. Just to say it is working A.O.K and is chuffing brilliant!!

    Regards,

    Russ

  2. #2
    Join Date
    Sep 2004
    Location
    Frisco, Texas
    Posts
    21
    Plugin Contributions
    0

    Re: Newsletter-Only Subscriptions for v1.3x

    I found one typo in this excellent contribution. A SQL error appeared when I deleted a customer account.

    admin/customers.php

    On line 343, change

    where customer_id = '" . (int)$customers_id . "'");

    to

    where customers_id = '" . (int)$customers_id . "'");

    (changed customer_id to customers_id)

  3. #3
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by alanpace
    I found one typo in this excellent contribution.
    Thank you for finding that!

    I've added the correction and upgraded the version to 2.0.2

    -Ng_

  4. #4
    Join Date
    Mar 2006
    Posts
    8
    Plugin Contributions
    0

    Re: Newsletter-Only Subscriptions for v1.3x

    Thanks for the contribution NG. I am looking to do a mass import of newsletter only subscribers. Is there an easy way to do this?

    Thanks

  5. #5
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by mocha
    Thanks for the contribution NG. I am looking to do a mass import of newsletter only subscribers. Is there an easy way to do this?
    It would depend upon format of your list (sql, txt, xsl, csv, etc). if you email me a copy of the list (or part of it) I can build something for you.

    I'll end with this caveat -not because I think you are intending it, but others might.
    admin-added subscriptions are auto-confirmed, but please please do not use this as a way to send people unsolicited spam (like using a list you bought somewhere).

    -Ng_

  6. #6
    Join Date
    Mar 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Thanks for the offer NG. The list format is flexible, at the moment it is an excel file with just the username and the email address. Also with the sidebox, I cannot find where to change it so the sidebox title is just "Newsletter" and is not a link.

  7. #7
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Okay, well the easiest way (other than having me code an interface :) would be to turn the excel into a sql file:

    Copy the email address column and save as a txt file (separate with commas).

    Open that file in your favorite text editor.

    Add to the beginning of the file (replace tbl_name with your subscribers table name, including prefix):
    INSERT INTO tbl_name (email_address) VALUES(

    Use the find/replace command:
    find: , [that's a comma]
    replace with: '), ('

    If the editor supports adding newlines you might use:
    replace with: '),\n ('

    At the end of the file you should have: lastemail@address
    Add to end: '); so it is: lastemail@address');

    You are trying to end up with:
    INSERT INTO tbl_name (email_address)
    VALUES([email protected]), ([email protected]),
    ([email protected]), ([email protected]);

    Save the resulting file (as .sql or .txt) and use the sql patches feature in the Tools menu to upload/run it. If you have hundreds of names you may need to break into a few files.

    -Ng_

  8. #8
    Join Date
    Jan 2005
    Location
    Waukee, Iowa
    Posts
    206
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Quote Originally Posted by mocha
    Also with the sidebox, I cannot find where to change it so the sidebox title is just "Newsletter" and is not a link.
    ? The 'Subscribe' sidebox title is not a link by default. Are your other sideboxes
    linked? It might be a feature you have enabled somewhere.

    [edit: found it]
    edit /includes/modules/sideboxes/YOUR_TEMPLATE/subscribe.php
    and add this somewhere:

    $title_link = false;

    Let me know if that works and I'll include it in the next update.

    -Ng_
    Last edited by NotGoddess; 2 Jun 2006 at 10:01 AM.

  9. #9
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    Hey All,
    Any chance this module works in 1.5.5?

    Thanks, John

  10. #10
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: Newsletter-Only Subscriptions for v1.3x

    unlikely to work on 1.5.5
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

 

 
Page 1 of 9 123 ... LastLast

Similar Threads

  1. Newsletter-Only Subscriptions for v1.3x: reinstall problems
    By sharonmiranda in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Nov 2011, 07:43 PM
  2. Newsletter subscriptions in the code
    By fgabrieli in forum General Questions
    Replies: 4
    Last Post: 19 Aug 2010, 03:30 PM
  3. help with newsletter subscriptions page
    By meesh in forum Customization from the Admin
    Replies: 8
    Last Post: 29 Mar 2009, 06:14 AM

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