Not for official support
We do not provide technical support in this forum.
If you want to contact our customer support, please use our support form.
You are not logged in.
how do i remove My Online Store from the top left of the page using shop script free and insert my own logo /slogan
Please help
curtis
Offline
Hi Curtis
You definitely can.
Go to 'templates' folder.
Then to 'tmpl1' folder.
Edit 'index.tpl.html'
Look for this line. It about 10 lines from the top :
<td valign="middle" width="220">
<a href="index.php"><img src="images/companyname.gif" border="0" alt="{$smarty.const.CONF_SHOP_NAME}"></a>
</td>
Substitute 'companyname.gif' to an image of your own.
Make sure you download your image to the 'images' folder !
It will then look something like this :
http://www.biodisc2u.com/store-malaysia/index.php
Cheers
Offline
ofr the other way is, do a logo and name it companyname.gif and put it in that folder replacing the old one.
Offline
hi guys thanks for you support it definetly wrk
you can have a look at my page at
www.curtiscakes.com
Offline
hi transporter
I have notice on your page that you have some extra page i would like to create a new page called photo gallery. can you help?
thanks
curtis
Offline
Curtis,
1) In cfg folder, create a new file named aux3 (no extension).
Put your html code for your 'photo gallery' in it.
2) In /languages/english.php search for this :
define('ADMIN_SHIPPING_PAGE', 'Shipping & Delivery');
Shorten it to :
define('ADMIN_SHIPPING_PAGE', 'Shipping');
under this line, add this :
define('ADMIN_GALLERY_PAGE', 'Gallery');
3) In /templates/tmpl1/index.tpl.html search for this :
<td><div {if ($main_content_template =="aux_page.tpl.html") && ($aux_page == "aux2")} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?aux_page=aux2"
class="menu">{$smarty.const.ADMIN_SHIPPING_PAGE}</a></div></td></tr>
CHANGE to :
<td><div {if ($main_content_template =="aux_page.tpl.html") && ($aux_page == "aux2")} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?aux_page=aux2"
class="menu">{$smarty.const.ADMIN_SHIPPING_PAGE}</a></div></td><td> </td>
ADD this line under 'aux2':
<td><div {if ($main_content_template =="aux_page.tpl.html") && ($aux_page == "aux3")} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?aux_page=aux3"
class="menu"><nobr>{$smarty.const.ADMIN_GALLERY_PAGE}</nobr></a></div></td>
<td> </td>
Offline
hi transporter thanks very much it wrk
Curtis
Offline