Zen Cart Logo
Forums / General Questions / how to make "back" button really go back?

how to make "back" button really go back?

Locked

Views: 3,022

Results 21 to 24 of 24
This thread is locked. New replies are disabled.
14 Nov 2010, 2:20 AM
#21
orchidlake avatar

orchidlake

New Zenner

Join Date:
Dec 2008
Location:
Florida
Posts:
50
Plugin Contributions:
0

how to make "back" button really go back?

glad that worked for your issue in IE, but that doesn't seem to apply for my issue in chrome... altho I am not sure i completely understand the resolution as you described it. =]

14 Nov 2010, 2:24 AM
#22
orchidlake avatar

orchidlake

New Zenner

Join Date:
Dec 2008
Location:
Florida
Posts:
50
Plugin Contributions:
0

Re: how to make "back" button really go back?

one thing i notice is that when i go to my site and then look at the who's online it shows this as the page i am currently on:

/template_default/common/favicon.ico

which of course isn't valid...

14 Nov 2010, 2:33 AM
#23
orchidlake avatar

orchidlake

New Zenner

Join Date:
Dec 2008
Location:
Florida
Posts:
50
Plugin Contributions:
0

Re: how to make "back" button really go back?

the link to the favicon was the issue.

in html_header.php i found the following custom code:

<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="../../template_default/common/<?php echo FAVICON; ?>" type="image/x-icon" />
<link rel="shortcut icon" href="../../template_default/common/<?php echo FAVICON; ?>" type="image/x-icon" />

i change it back to default, to read:

<?php if (defined('FAVICON')) { ?>
<link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />

and now the problem has been resolved.

totally amazing that only chrome got pissy about that. :censored:

18 Nov 2010, 8:56 PM
#24
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: how to make "back" button really go back?

orchidlake:

the link to the favicon was the issue.

in html_header.php i found the following custom code:

<?php if (defined('FAVICON')) { ?> <link rel="icon" href="../../template_default/common/<?php echo FAVICON; ?>" type="image/x-icon" /> <link rel="shortcut icon" href="../../template_default/common/<?php echo FAVICON; ?>" type="image/x-icon" /> ``` > > i change it back to default, to read: > > ``` <?php if (defined('FAVICON')) { ?> <link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" /> <link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" /> ``` > > and now the problem has been resolved. > > totally amazing that only chrome got pissy about that. :censored: That's why it's always good to use the original default code, instead of editing it unnecessarily. :blush: