Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 41
  1. #11
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    The image will be unsecure on secure page unless you call it with a relative url
    example: url(../images/logo.gif) instead of url(includes/templates/CUSTOM/images/logo.gif)
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  2. #12
    Join Date
    Dec 2006
    Location
    France
    Posts
    67
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    I cant suggest anything at moment but just keep looking. I am a little confused, if you say this script is from your custom file, i would say nothing of this one is live on your main page. I would sleep on it then try fresh tomorrow.

  3. #13
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by barco57 View Post
    The image will be unsecure on secure page unless you call it with a relative url
    example: url(../images/logo.gif) instead of url(includes/templates/CUSTOM/images/logo.gif)
    Yes I know that. What I do not know is what php is calling it or I would change it.
    index.php tells header.php to load

    Header.php does not tell the image to link to HOME. What does?

    I can not tell you how good it is to talk to someone about this problem other than my wife who is telling me to me give up.

    Carl I tried to sleep on it last night.

    I think I would suggest to any new installers to set up ssl first before doing anything else. Last night I had a finished web page today I have a blank site with one link thats insecure about itself.It also happens to be the very first thing I did. 3 weeks ago
    Last edited by IDW; 3 Jan 2007 at 02:34 AM.

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

    Default Re: Turn off HOME link in Logo Image

    includes/templates/template_default/common/tpl_header.php

    go to logoWrapper div
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #15
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by barco57 View Post
    includes/templates/template_default/common/tpl_header.php

    go to logoWrapper div

    <div id="logoWrapper">
    <div id="logo"><?php echo '<a href="' . HTTPS_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>


    I added the S but it did not help. I will keep looking

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

    Default Re: Turn off HOME link in Logo Image

    i didn't think it would but you wanted to know the file.....I have reread this thread and I still believe that the problem is that the image is called wrong, not a problem with the link (a href tied to the image) as the link points outbound from the secure page to the index page and that doesn't matter. Maybe I'm not understanding the issue.
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  7. #17
    Join Date
    Jun 2003
    Posts
    33,721
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Are you using a cPanel redirect to link from the root to your subdirectory?
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  8. #18
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by Kim View Post
    Are you using a cPanel redirect to link from the root to your subdirectory?
    I would say no because I an not very fammilar with a redirect.

    this is needed because of the mirrored site in a ssl dir?

    I am beginning to wonder if a sharred ssl is worth it. If I was to purchase one in my domain name do I still need to manage another set of files in a ssl dir?

  9. #19
    Join Date
    Dec 2006
    Location
    France
    Posts
    67
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by IDW View Post
    // added defines for header alt and text
    define('HEADER_ALT_TEXT', 'Washington Pools');
    define('HEADER_SALES_TEXT', 'Welcome');
    define('HEADER_LOGO_WIDTH', '192px');
    define('HEADER_LOGO_HEIGHT', '84px');
    define('HEADER_LOGO_IMAGE', '');

    This header.php is from my custom file. It will override the classic file.

    The leisurescapes is missing because I copied it from my backup files.
    (its faster)

    The link reference to the header logo is to www.washingtonpools/online (HOME)
    Thats what I cant find
    I am not convinced, this is not what is produced on your site, so I think you are still looking at the wrong header, maybe override not working.
    what is on your site is this.
    // added defines for header alt and text
    define('HEADER_ALT_TEXT', 'washington pools leisurescapes');
    define('HEADER_SALES_TEXT', ' <i>Sarnia ON</i>');
    define('HEADER_LOGO_WIDTH', '280px'); x
    define('HEADER_LOGO_HEIGHT', '100px'); x
    define('HEADER_LOGO_IMAGE', 'logo.gif'); yours is missing

    I think it important you find this header.php and go from there. Ultra edit32 makes it easy. I see you have made a few mods on your opening page,, eg. powered by:,, you may have dropped a clanger on the way and may not be easy to remember what you did.
    If you have no hair left to pull out, you could try this as a last resort:
    Download the template gloss blue or black, excellent template and a 5yr old could install it, so easy. dont bother with overides at this stage, update in admin then run it. i think there is a good chance all the nastys will go. nothing to loose at this stage.
    good luck.

  10. #20
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    I start thinking, "so the error comes from pulling a image from an unsecure part of the site"

    So I changed the name of the http dir so it cant find it and tried to open the site with https://ssl5.servage.net/~sc15698-NLZR/online

    This showed up on the task bar

    https ssl5.servage.net/~sc15698-NLZR/online/zc install/index.php

    Not found

    where did the zc_install come from
    Last edited by IDW; 4 Jan 2007 at 03:34 AM.

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Changing URL link of image with logo from Home Page
    By Sachin1008 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 28 Apr 2014, 02:24 PM
  2. Home Link image (logo.gif)
    By ThomasT in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 1 Jul 2010, 09:02 PM
  3. Turn Off Certain Sideboxes on Home Page
    By autoace in forum Basic Configuration
    Replies: 5
    Last Post: 30 Sep 2009, 06:08 PM

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