This is a discussion on favicon within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; Hi everyone. Can anyone tell me how to put a favicon on a oscommerce website. I tried putting it on ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi everyone. Can anyone tell me how to put a favicon on a oscommerce website. I tried putting it on the root of the web site. Mozilla nor EI6 could pick it up. There is something you can put in html like. Quote:
any idea? |
| Sponsored Links | ||
| ||
| |
|
#2
| ||||
| ||||
| how about main_page.tpl.php in your templates dir (whatever template you use. If using the aabox template = /templates/aabox/main_page.tpl.php)
__________________ Michael Sasek osCMax Developer
|
|
#3
| |||
| |||
| got ya! Cheers Mike |
|
#4
| |||
| |||
| I put it in however it does' nt show. Any idea what could be wrong. I see one in this page oscdox.com but not in mine... ----------------------------------------------------------------------------------- <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <!The right place??? <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ----------- Thanks for your help.. Mike |
|
#5
| |||
| |||
| This works. I duno if the placement was wrong but it works. In templates/main_page_tpl.php : <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <?php require(DIR_WS_INCLUDES . 'meta_tags.php'); ?> <title><?php echo META_TAG_TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" /> <meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <link rel="stylesheet" type="text/css" href="stylesheet.css"> <?php if ($javascript) { require(DIR_WS_JAVASCRIPT . $javascript); } ?> </head> see http://www.mobilegamer.gr for example. |
| Sponsored Links | ||
| ||