Page 1 of 2 12 LastLast
Results 1 to 10 of 1165

Hybrid View

  1. #1
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

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

    Quote Originally Posted by MeltDown View Post
    Is it possible to remove the "HTML" & "TEXT-Only" plus the corresponding buttons from this module? If so, can the internal settings default to html for all customers?

    Thanks!
    I'm still unable to resolve this issue. I now know from Tez that:
    HTML is the default option so if you just hide the form buttons in the subscribe and update account areas it would suffice.
    But I still haven't been able to determine what steps to follow to make these changes. Any help would be greatly appreciated!

    Tim

  2. #2
    Join Date
    Mar 2007
    Posts
    31
    Plugin Contributions
    0

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

    Hi NG,

    Have just loaded your excellent Newsletter Subscribe and all appeaed to be OK. I then did a test to myself, by putting my own email in the box and sending and received the confirmation email immediately. Then I clicked the link on the mail and it took me back to my site on an error page. The same thing happened when I used another email address. It does not seem the new email addresses have been stored either because the confirmation process failed. If you or anyone could take a look I'd be very grateful for any advise. The site is http://www.saulsaddlery.com/store and the newsletter box is on the bottom left side.

    Many thanks,

    Rob

  3. #3
    Join Date
    Mar 2007
    Posts
    31
    Plugin Contributions
    0

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

    Hi All,

    To update my problem, the two emails I have entered in the newsletter box are listed as 'confirmation pending. So it is just the return confirmation which is not working. The link to click (it it helps) was:

    http://saulsaddlery.com/store/[email protected]

    hope this throws a bit more light on it,

    Rob


  4. #4
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

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

    I believe I have the fix for at least the 1267 error generated for some of us with the new version of this mod for 1.3.7

    When the mod is installed, it creates the subscribers table and sets the collation of email_address, email_format, and confirmed. That's why one of the collation errors mentions SWEDISH.

    All the Admin needs to do is open the subscribers table in phpMyAdmin and edit the email_address, email_format, and confirmed collation fields to match the OTHER collation mentioned in the errror.

    Voila!

    Please note that this does not addresss any errors other than the 1267 database error after installation.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  5. #5
    Join Date
    May 2006
    Posts
    40
    Plugin Contributions
    0

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

    I can't seem to search my way to an answer in this thread and I apologize if this question has already been answered. I currently have this module installed and its working great.

    My question is: how can I add rows to the "subscription_manager.php" page? Currently, the page shows 20 customers, however, on my 24" monitor there is 2/3 of the page that is left empty. I have looked at every line of code in the file and can't find what I'm looking for.

    Thanks guys!
    LMNOtees.com - Wear your humor on your sleeve!

  6. #6
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,700
    Plugin Contributions
    11

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

    Can't test it as I don't have enough subscribers to the new site but, using Configuration in the Admin, the second item under maximum values may be what you need.

    Set "Search Results Per Page" to whatever value works for you. Be advised that, not only does this set MANY items in the admin, it also sets the max in Featured Products for the catalog.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  7. #7
    Join Date
    May 2006
    Posts
    40
    Plugin Contributions
    0

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

    Quote Originally Posted by dbltoe View Post
    Can't test it as I don't have enough subscribers to the new site but, using Configuration in the Admin, the second item under maximum values may be what you need.

    Set "Search Results Per Page" to whatever value works for you. Be advised that, not only does this set MANY items in the admin, it also sets the max in Featured Products for the catalog.

    Thanks a lot for your suggestion. That did the job, and I haven't found anything that it adversely affected elsewhere.

    Thanks again!
    LMNOtees.com - Wear your humor on your sleeve!

  8. #8
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

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

    Quote Originally Posted by dbltoe View Post
    I believe I have the fix for at least the 1267 error generated for some of us with the new version of this mod for 1.3.7

    When the mod is installed, it creates the subscribers table and sets the collation of email_address, email_format, and confirmed. That's why one of the collation errors mentions SWEDISH.

    All the Admin needs to do is open the subscribers table in phpMyAdmin and edit the email_address, email_format, and confirmed collation fields to match the OTHER collation mentioned in the errror.

    Voila!

    Please note that this does not addresss any errors other than the 1267 database error after installation.
    Take a look at this

  9. #9
    Join Date
    Nov 2006
    Location
    Papworth, Cambridgeshire, UK
    Posts
    731
    Plugin Contributions
    3

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

    Quote Originally Posted by MeltDown View Post
    I'm still unable to resolve this issue. I now know from Tez that:

    But I still haven't been able to determine what steps to follow to make these changes. Any help would be greatly appreciated!

    Tim

    Edit /includes/templates/your_template/sideboxes/tpl_subscribe.php and remove the following

    if(EMAIL_USE_HTML == 'true') {
    $content .= ' <br /> <label>' . zen_draw_radio_field('email_format', 'HTML', true) . ENTRY_EMAIL_HTML_DISPLAY . '</label>';
    $content .= ' <label style="white-space:nowrap">' . zen_draw_radio_field('email_format', 'TEXT', false) . ENTRY_EMAIL_TEXT_DISPLAY . '</label>';
    }

    The customer default email format is set in Admin-Configuration-Customer Details.

    Rgds,

    Chuck

  10. #10
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

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

    Quote Originally Posted by Chuckl View Post
    Edit /includes/templates/your_template/sideboxes/tpl_subscribe.php and remove the following

    if(EMAIL_USE_HTML == 'true') {
    $content .= ' <br /> <label>' . zen_draw_radio_field('email_format', 'HTML', true) . ENTRY_EMAIL_HTML_DISPLAY . '</label>';
    $content .= ' <label style="white-space:nowrap">' . zen_draw_radio_field('email_format', 'TEXT', false) . ENTRY_EMAIL_TEXT_DISPLAY . '</label>';
    }

    The customer default email format is set in Admin-Configuration-Customer Details.

    Rgds,

    Chuck
    Beautiful - That did the trick. Thanks Chuck

    Question: When signing up for a newsletter account, it is defaulting to text instead of html. In my admin/config/email it is set to default to HTML and altering the Admin-Configuration-Customer Details doen't seem to have any effect. Any idea how to force an HTML default?

    Thanks again - Tim

 

 
Page 1 of 2 12 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