Page 23 of 117 FirstFirst ... 1321222324253373 ... LastLast
Results 221 to 230 of 1165
  1. #221
    Join Date
    May 2006
    Posts
    22
    Plugin Contributions
    0

    Re: Newsletter-Only Subscriptions for v1.3x

    Just a quickie,

    tried to enter a test email with 24 characters and the entry box stopped after 23!

    Do I edit this in admin config or in the code?


    Pete,

    Sleep well.

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

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

    it's in the sidebox template file.

    sideboxes/tpl_subscribe.php

    change or take out the 'maxlength'
    NotGoddess (Sara Jacobson)
    NotGoddess.com

  3. #223
    Join Date
    May 2006
    Posts
    22
    Plugin Contributions
    0

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

    Magic,

    Thanks,

    Pete

  4. #224
    Join Date
    May 2006
    Posts
    22
    Plugin Contributions
    0

    Re: Newsletter-Only Subscriptions for v1.3x

    And hopefully finally before I rest my overstretched brain ....

    Has anyone managed to move the Newsletter unsubscribe link from the Information sidebox to the Newsletter sidebox .. seems a more logical place to have it?

    Had a quick shufty at the files but didn't really know where to start without the risk of messing up completely.


    Pete

  5. #225
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,026
    Plugin Contributions
    13

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

    Am I missing something here?

    I have this installed on a test site and it shows perfectly fine in the sidebox, however it doesnt matter where I put the code in the tpl_header.php it will not show up, currently testing with 1.3.5 and using the newest upgrade for this contrubition. Below is the code I currently have.


    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_header.php 4066 2006-08-06 05:50:06Z ajeh $
     */
    ?>
    
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    
    <div id="headerWrapper">
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
        <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php
          } else {
            if (STORE_STATUS == '0') {
    ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <?php } } ?>
    
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    <div class="navMainSearch forward"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->
    
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
        <div id="taglineWrapper">
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
          <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
                  }
    ?>
    
    <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
          <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php 
          // BEGIN newsletter_subscribe mod 1/1
           if(defined('NEWSONLY_SUBSCRIPTION_ENABLED') &&
              (NEWSONLY_SUBSCRIPTION_ENABLED=='true') &&
              (NEWSONLY_SUBSCRIPTION_HEADER=='true')) {
               include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_SUBSCRIBE_HEADER));
           }
          // END newsletter_subscribe mod 1/1    
     ?>
    <?php
                    }
                  }
    ?>
        </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    </div>
    <br class="clearBoth" />
    <!--eof-branding display-->
    
    <!--eof-header logo and navigation display-->
    
    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    <?php } ?>
    Website being tested on Testing
    Any ideas would be appreciated.

    Thanks in advance

  6. #226
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,026
    Plugin Contributions
    13

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

    Also tried the code according to the example file attached is the file if you prefer to see it raw.
    Last edited by knuckle-101; 7 Oct 2006 at 04:24 AM.

  7. #227
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,026
    Plugin Contributions
    13

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

    Anyone got any ideas?

  8. #228
    Join Date
    Aug 2006
    Posts
    57
    Plugin Contributions
    0

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

    I have gotten the newsletter subscribe button to show after some work, but now wondering why it appears like this:

    www.successbooksetc.com

    Can someone give me an idea of where to change this look?

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

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

    With your other issue, it looks like you didn't rename the 'YOUR_TEMPLATE' folders.

    In the contribution are a series of folders called 'YOUR_TEMPLATE'. You needed to rename all of those to match your template name. e.g. if you were using the 'classic' template you'd rename them all to 'classic' or if you were using 'pink_elephants' template, you'd name them all that.

    -Ng_
    NotGoddess (Sara Jacobson)
    NotGoddess.com

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

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

    @Pete- the sidebox with subscribe/unsubscribe is coming in the next release which I need to just buckle down and get done tonight.

    @knuckle-101-
    For the header subscribe to work you need 3 things:
    1) the code in the header template file (which you've done)
    2) turn newsonly subscriptions on (and if you see the normal sidebox you've done that)
    3) turn the header subscription box on.
    It should be under admin->Configuration->Layout Settings (near bottom)
    Show subscribe link in header?

    This should be in the readme.txt file that came with the contribution (under Usage Instructions), but I'll try to make it more clear in the next release.
    NotGoddess (Sara Jacobson)
    NotGoddess.com

 

 
Page 23 of 117 FirstFirst ... 1321222324253373 ... 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