Quote:
Originally Posted by cflsystems
This file already says use something if not fast lane checkout and use modules/Fast_Lane_Checkout/head.tpl if in checkout. So you will need to edit modules/Fast_Lane_Checkout/head.tpl to show different image in FLC
|
Yeah, I looked in that file modules/Fast_Lane_Checkout/head.tpl already, and tried editing it, before posting this thread, it didn't change.
This is what it looks like:
{*
$Id: head.tpl,v 1.182.2.3 2009/11/10 15:00:58 joy Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
<div class="head-bg-flc">
<div class="head-bg2-flc">
<div class="phones">
{if $config.Company.company_phone}
<span>{$lng.lbl_phone_1_title}: {$config.Company.company_phone}</span>
{/if}
{if $config.Company.company_phone_2}
<span>{$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}</span>
{/if}
</div>
<div class="clearing"></div>
<div class="logo"><a href="{$catalogs.customer}/home.php"><img src="{$ImagesDir}/vivid_dreams/logo_check.gif" alt="" /></a></div>
{if $speed_bar}
<div class="flc-tabs-top">
<ul>
{foreach from=$speed_bar item=sb name="tabs"}
<li{if $smarty.foreach.tabs.first} class="last"{/if}><a href="{$sb.link|amp}">{$sb.title}</a></li>
{/foreach}
</ul>
</div>
{/if}
{if $active_modules.SnS_connector and $sns_collector_path_url ne '' && $config.SnS_connector.sns_display_button eq 'Y'}
<div class="flc-sns-button">
<div class="valign-middle">
<img src="{$ImagesDir}/rarrow.gif" alt="" /><strong>{include file="modules/SnS_connector/button.tpl" text_link="Y"}</strong>
</div>
</div>
{/if}
{if $login ne ""}
<div class="flc-top-login">
<form action="{$xcart_web_dir}/include/login.php" method="post" name="toploginform">
<input type="hidden" name="mode" value="logout" />
<input type="hidden" name="redirect" value="{$redirect|amp}" />
<input type="hidden" name="usertype" value="{$auth_usertype|escape}" />
<span class="flc-top-login-text">
<strong>{if $userinfo.firstname || $userinfo.lastname}{$userinfo.firstname} {$userinfo.lastname}{else}{$login}{/if}</strong>
</span>
{include file="customer/buttons/logout_menu.tpl" additional_button_class="menu-button3" style="link"}
</form>
</div>
{/if}
</div>
</div>
===============
I then changed the name of the logo at checkout, and also put in some width and height settings, and it didn't change the size of the logo in checkout. It's still going by the size set for the logo.gif in the altskin.css file.
{*
$Id: head.tpl,v 1.182.2.3 2009/11/10 15:00:58 joy Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
<div class="head-bg-flc">
<div class="head-bg2-flc">
<div class="phones">
{if $config.Company.company_phone}
<span>{$lng.lbl_phone_1_title}: {$config.Company.company_phone}</span>
{/if}
{if $config.Company.company_phone_2}
<span>{$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}</span>
{/if}
</div>
<div class="clearing"></div>
<div class="logo"><a href="{$catalogs.customer}/home.php"><img src="{$ImagesDir}/vivid_dreams/newlogocheck.gif" width="137" height="87" alt="" /></a></div>
{if $speed_bar}
<div class="flc-tabs-top">
<ul>
{foreach from=$speed_bar item=sb name="tabs"}
<li{if $smarty.foreach.tabs.first} class="last"{/if}><a href="{$sb.link|amp}">{$sb.title}</a></li>
{/foreach}
</ul>
</div>
{/if}
{if $active_modules.SnS_connector and $sns_collector_path_url ne '' && $config.SnS_connector.sns_display_button eq 'Y'}
<div class="flc-sns-button">
<div class="valign-middle">
<img src="{$ImagesDir}/rarrow.gif" alt="" /><strong>{include file="modules/SnS_connector/button.tpl" text_link="Y"}</strong>
</div>
</div>
{/if}
{if $login ne ""}
<div class="flc-top-login">
<form action="{$xcart_web_dir}/include/login.php" method="post" name="toploginform">
<input type="hidden" name="mode" value="logout" />
<input type="hidden" name="redirect" value="{$redirect|amp}" />
<input type="hidden" name="usertype" value="{$auth_usertype|escape}" />
<span class="flc-top-login-text">
<strong>{if $userinfo.firstname || $userinfo.lastname}{$userinfo.firstname} {$userinfo.lastname}{else}{$login}{/if}</strong>
</span>
{include file="customer/buttons/logout_menu.tpl" additional_button_class="menu-button3" style="link"}
</form>
</div>
{/if}
</div>
</div>