Disable IE7 message

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Sep 06, 2013 1:47 pm
Reply with quote
Report this post
I'm trying to make my site work in IE7, at least more or less, but the main issue still is the mesage that the browser is unsupported....

How can I remove this message? There is no switch in the configuration it seems.

I also set the display of the system message container to none, but it seems the message is shown in a different DIV. I don't have the debugging tools to find this DIV in IE&, can you tell me?
User avatar
Fresh Boarder

GK User
Sat Sep 07, 2013 9:02 pm
Reply with quote
Report this post
Hi,
You have to delete it from : gk_storebox\layouts\default.php

Code: Select all
<div id="ieToolbar"><div><?php echo JText::_('TPL_GK_LANG_IE_TOOLBAR'); ?></div></div>


Or hide this # (ID) by CSS
User avatar
Platinum Boarder

GK User
Sat Sep 07, 2013 9:04 pm
Reply with quote
Report this post
We used this rule
<?php if ($this->browser->get('browser') == 'ie7' || $this->browser->get('browser') == 'ie6') : ?>

Probably you know that IE7 is a old browser (2006), not well prepared for modern solutions.
User avatar
Platinum Boarder

GK User
Sun Sep 08, 2013 9:08 am
Reply with quote
Report this post
Thanks, I'll use CSS to hide the DIV.
User avatar
Fresh Boarder

GK User
Sun Sep 08, 2013 10:08 am
Reply with quote
Report this post
Sure,

Code: Select all
#ieToolbar {display:none;}


How to : http://www.gavick.com/documentation/joo ... -template/
User avatar
Platinum Boarder


cron