Nice, and i installed it, but i can choose just 1 browser, i want to kick both IE and Safari. Can you change it to multiple choise?
I was just able to make safari and IE blocked in the same script, so i'm ok, this is just a suggestion to improve your addon
This is how i modified the code to ban both the browser:
from:
Quote:
<if condition="$vboptions[zh_restrict_type]==1">
<if condition="is_browser(ie)">
<script type="text/javascript">
alert("Internet Explorer is not welcome here, than your browser type has been blocked from our site. Please a supported one. We suggest you Firefox or Opera")
window.location = "http://www.url.com"
</script>
</if> </if>
|
To:
Quote:
<if condition="$vboptions[zh_restrict_type]==1">
<if condition="is_browser(ie)">
<script type="text/javascript">
alert("Your browser type has been blocked from our site.Please a supported one.")
window.location = "http://www.url.com"
</script>
</if>
<if condition="is_browser(safari)">
<script type="text/javascript">
alert("Your browser type has been blocked from our site.Please a supported one.")
window.location = "http://www.url.com"
</script>
</if>
</if>
|
And
From:
Quote:
<option value=\"1\" " . iif($setting['value']==1,'selected="selected"') . ">Internet Explorer</option>
|
To:
Quote:
<option value=\"1\" " . iif($setting['value']==1,'selected="selected"') . ">Internet Explorer and Safari</option>
|
Hope it helps