Page 12 of 12 FirstFirst ... 2101112
Results 111 to 119 of 119
  1. #111
    Join Date
    May 2006
    Location
    Japan
    Posts
    326
    Plugin Contributions
    1

    Default Re: Has Anyone Created A Split Login for 1.3?

    Understood,
    Thanks!

    Is there a way to take it from 1.3.7...or is paypal too much apart of it all now?
    Skin Evolution.
    Lynda.com,its a great place to learn.
    Camelot Hosting,it's where my site calls home!

    E-Start your Zen-Cart,KH is the Man, Thanks for all the hard work!

  2. #112
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Has Anyone Created A Split Login for 1.3?

    If you are using version 1.3.7 the split panel is built in by default and modifications (other than styling) are not recommended since the login and registration are tied into the new Paypal Express option.

  3. #113
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Has Anyone Created A Split Login for 1.3?

    Check here for some styling tips for the 1.3.7 split login.

    www.zen-cart.com/forum/showpost.php?p=342487&postcount=5

  4. #114
    Join Date
    Feb 2007
    Location
    Dallas area
    Posts
    76
    Plugin Contributions
    0

    Default Re: Has Anyone Created A Split Login for 1.3?

    My client wants the only access to the 'create account' info to be in the flow of checking out of the shopping cart. He wants to keep people from creating an account and accessing member info if they haven't bought anything. The login info still needs to be where it's at.

    Is it possible to use this mod for these purposes? I understand there would need to be a bit more work done to split the page and change links accordingly.

  5. #115
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Has Anyone Created A Split Login for 1.3?

    Quote Originally Posted by bradymc View Post
    My client wants the only access to the 'create account' info to be in the flow of checking out of the shopping cart. He wants to keep people from creating an account and accessing member info if they haven't bought anything. The login info still needs to be where it's at.

    Is it possible to use this mod for these purposes? I understand there would need to be a bit more work done to split the page and change links accordingly.
    You already have extensive discussions on this issue here:

    www.zen-cart.com/forum/showthread.php?t=64389

  6. #116
    Join Date
    Jun 2006
    Location
    Boston, MA
    Posts
    84
    Plugin Contributions
    0

    Default Re: Has Anyone Created A Split Login for 1.3?

    Hey all I use ZC 1.3.0.2 and have used the split login mod for a while and love it.

    I have noticed recently in the new IE 7 and in FireFox that some style issues exist. My sitte is here: here

    Does anyone know what specific code to edit/change to make the boxes line up?

    My code for tpl_login_default is here:

    Code:
    <div class="centerColumn" id="loginDefault">
    
    <h1 id="loginDefaultHeading" class="mmn"><?php echo $breadcrumb->last(); ?></h1>
    
    <?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>
    
    <?php
      if ($_SESSION['cart']->count_contents() > 0) {
    ?>
    <div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>
    <?php
      }
    ?>
    </div>
    <br class="clearboth" />
    <div id="logpage">
    <div id="returncus">
    <h3 id="returncusheading">Returning Dealers</h3>
    <div class="logcontent">  
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>
    <fieldset>
    <legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>
    <p><?php echo TEXT_RET_CUSTOMER; ?></p>
    <label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
    <?php echo zen_draw_input_field('email_address', '', 'size="27" id="login-email-address"'); ?>
    <br class="clearboth" />
    
    <label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
    <?php echo zen_draw_password_field('password', '', 'size="27" id="login-password"'); ?>
    </fieldset>
    <br>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
    <div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
    </form>
    </div>
    </div>
    
    <div id="newcus">
    <h3 id="newcusheading">New Dealers</h3>
    <div class="logcontent">
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_CREATE_ACCOUNT, 'action=process', 'SSL')); ?>
    <fieldset>
    <legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>
    
    <div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>
    
    <!--<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>-->
    
    </fieldset>
    
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT); ?></a></div>
    </form>
    </div>
    </div>
    </div>

  7. #117
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Has Anyone Created A Split Login for 1.3?

    Quote Originally Posted by dcfxking View Post
    Hey all I use ZC 1.3.0.2 and have used the split login mod for a while and love it.

    I have noticed recently in the new IE 7 and in FireFox that some style issues exist. My sitte is here: here

    Does anyone know what specific code to edit/change to make the boxes line up?

    My code for tpl_login_default is here:
    adjust the width of the heading(s) in your stylesheet_new.css

    #returncusheading {margin: 0; padding: 0.5em 0; font-size: 1.1em; background-color: #000000; color: #EBEBEB; width: 335px; text-align: center}

    #newcusheading {margin: 0; padding: 0.5em 0; font-size: 1.1em; background-color: #000000; color: #EBEBEB; width: 335px; text-align: center}

  8. #118
    Join Date
    Jun 2006
    Location
    Boston, MA
    Posts
    84
    Plugin Contributions
    0

    Default Re: Has Anyone Created A Split Login for 1.3?

    Thanks Clyde. All these browser differences are making me crazy!

    I changed it to 335 and in firefox its perfect however still get a bit extra in the new IE. So i tried 330 and of course its perfect in new ie but too little in firefox. I guess Ill just have to deal with it unless you know another fix?

    Also do you have any idea how to remove the gray border around by bottom footer - (the copyright info)?

  9. #119
    Join Date
    Jun 2006
    Location
    Boston, MA
    Posts
    84
    Plugin Contributions
    0

    Default Re: Has Anyone Created A Split Login for 1.3?

    Figured out the gray border - there was a border=1 attribute in tpl_footer!

 

 
Page 12 of 12 FirstFirst ... 2101112

Similar Threads

  1. Buttons for split login?
    By Ivanna in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 6 Aug 2011, 10:06 PM
  2. Paypal Express Split Login for normal login too
    By NamSingh in forum PayPal Express Checkout support
    Replies: 9
    Last Post: 6 Apr 2010, 03:06 PM
  3. rearrange login and account creation for split login
    By ctcentralinfo in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 16 Jul 2008, 07:45 AM
  4. Dutch text for split login page
    By pjb923 in forum Addon Language Packs
    Replies: 4
    Last Post: 15 Dec 2007, 09:41 PM
  5. has anyone created more product types?
    By Moebiusenterprises in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 27 Dec 2006, 08:44 PM

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