Page 13 of 14 FirstFirst ... 311121314 LastLast
Results 121 to 130 of 140
  1. #121
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: removing login info

    The bulk of my contribution is just an explanation of how to make the template changes. The actual code to allow optional password was from PaulM. And then after playing around, I figured out how to allow duplicate emails. I don't even feel right calling it "my" contribution. I feel more like I just gathered information for you and zipped it up.

    To make it work, you really only need to edit 3 files, and they are very small edits. Everything else was just changes to the templates, like removing the login fields, password fields, etc. Not a really big deal, but better done on a sample cart first so you can get the idea of whats going on. When it comes down to it, if you are capable of editing tpl files and you understand what you are doing when you make those edits, its really quite simple. And I'm always here to help.

  2. #122
    Join Date
    Dec 2006
    Location
    Escondido, California
    Posts
    38
    Plugin Contributions
    0

    Default Re: removing login info

    Quote Originally Posted by craftzombie View Post

    To make it work, you really only need to edit 3 files, and they are very small edits. Everything else was just changes to the templates, like removing the login fields, password fields, etc. ...And I'm always here to help.
    Thanks! we really appreciate it!

    I created a new sample cart (locally on my machine), and substituted all the php files you provided, putting them
    in the correct folders, and created "custom" folders where necessary with
    the new files as well. The template I'm using is called "Custom" and I
    chose it via Admin panel.

    After all that, it still shows the Login at top left, and the Login link in
    the middle....there are no account links, though.

    Is that how it should look initially? I just need to know if I'm on the right
    track before I can it and start over.


  3. #123
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: removing login info

    Quote Originally Posted by cmcgaugh View Post
    Thanks! we really appreciate it!

    I created a new sample cart (locally on my machine), and substituted all the php files you provided, putting them
    in the correct folders, and created "custom" folders where necessary with
    the new files as well. The template I'm using is called "Custom" and I
    chose it via Admin panel.

    After all that, it still shows the Login at top left, and the Login link in
    the middle....there are no account links, though.

    Is that how it should look initially? I just need to know if I'm on the right
    track before I can it and start over.

    Hello! I'm not sure unless I look at it, which I can't do since its not online.

    When you say the login is at the top left, do you mean the top left of the entire site (in a sidebox) or the top left of the login page? And the login link in the middle.... is this on the login page or is this on every page underneath your header? The template changes I provided were basically the template changes I made to my personal site. Everyone will have different changes to make depending on your layout. I do not use the login sidebox or the links underneath the header. These things are turned off in the admin, not edited out in the templates.

  4. #124
    Join Date
    Dec 2006
    Location
    Escondido, California
    Posts
    38
    Plugin Contributions
    0

    Default Re: removing login info


  5. #125
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: removing login info

    Quote Originally Posted by cmcgaugh View Post

    I removed these links so early on in my design that I forgot all about them when I put the mod together.

    For the top left corner, you can remove/edit those links in includes\templates\YOUR_TEMPLATE\common\tpl_header.php (the ones in red) toward the top of the page:

    Code:
        
    <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>
    and the for the middle of the page where it says "Welcome Guest..."

    I believe that is in admin > config > layout settings > Customer Greeting - Show on Index Page > set to "0"

    but don't quote me on that!

  6. #126
    Join Date
    Dec 2006
    Location
    Escondido, California
    Posts
    38
    Plugin Contributions
    0

    Default Re: removing login info

    ...thanks! I'll give it a try asap.

  7. #127
    Join Date
    Mar 2007
    Posts
    13
    Plugin Contributions
    0

    Default Re: removing login info

    Goto: includes/languages/CUSTOM/english.php

    Edit out the * at line 241

    define('ENTRY_TELEPHONE_NUMBER_TEXT', '*');

  8. #128
    Join Date
    Mar 2007
    Posts
    13
    Plugin Contributions
    0

    Default Re: removing login info

    Goto: includes/languages/CUSTOM/english.php

    Edit out the * at line 241

    define('ENTRY_TELEPHONE_NUMBER_TEXT', '*');

  9. #129
    Join Date
    Apr 2007
    Posts
    139
    Plugin Contributions
    0

    Default Re: removing login info

    hi

    how do i disable creating an account when a click to "Write a Review" and "Tell A Friend" is made?I just want to go straight to their respective page. How? How? Please help.

  10. #130
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,475
    Plugin Contributions
    11

    Default Re: removing login info

    Don't know right off about write a review BUT,

    If you allow visitors to tell a friend without logging in, you are in essence becoming an email relay for anyone who wants to spam the world. Don't be surprised if you show up on a relay server list and emails start disappearing.

 

 
Page 13 of 14 FirstFirst ... 311121314 LastLast

Similar Threads

  1. Adding/Removing header info
    By jordan8201 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 12 May 2009, 03:14 AM
  2. removing product info -- go streight to cart
    By mversaggi in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 24 Mar 2008, 05:22 AM
  3. Removing bits from Page Info
    By sparkiii in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 27 Jun 2007, 12:42 AM

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