IE7 clearType fix for toolbar features not loading. Where do I go to fix??
Hello,
Sometime ago I submit a request for help concerning the wibiya widget on my blog: exploretruth.com
The response I received is below, however, I was not able to find where in the JS code I need togo to fix this issue. Can you please direct me to where I need to go, and what I need to change in order to fix this issue. I would also be willing to give you log in info, so that you could do it on my behalf if that would be easier.
----------------------
Hello Veron,
We've examined your website thoroughly and found the script clash.
the problem origin in a file name fusion.js.
this script file fixes various bugs (such as IE6 PNG) and generally shouldn't cause any compatibility issues.
but specific fix rewrites the original jQuery "fade in" and "fade out" functions and causing the Wibiya toolbar to act strangely.
file documentation suggest this fix is for IE7 clearType animation.
locally (on my computer) I've deleted these functions and everything worked smoothly.
my suggestion is to find an alternative to this IE7 clearType fix.
----------------------------
Sometime ago I submit a request for help concerning the wibiya widget on my blog: exploretruth.com
The response I received is below, however, I was not able to find where in the JS code I need togo to fix this issue. Can you please direct me to where I need to go, and what I need to change in order to fix this issue. I would also be willing to give you log in info, so that you could do it on my behalf if that would be easier.
----------------------
Hello Veron,
We've examined your website thoroughly and found the script clash.
the problem origin in a file name fusion.js.
this script file fixes various bugs (such as IE6 PNG) and generally shouldn't cause any compatibility issues.
but specific fix rewrites the original jQuery "fade in" and "fade out" functions and causing the Wibiya toolbar to act strangely.
file documentation suggest this fix is for IE7 clearType animation.
locally (on my computer) I've deleted these functions and everything worked smoothly.
my suggestion is to find an alternative to this IE7 clearType fix.
----------------------------
1
person has this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
-
Inappropriate?Hi Veron,
do you have FTP access (or any other file managing system) to your website?
do you know how to download / upload files to your website ?
if so, it won't be hard to fix.
I'm waiting for your answer
Thanks
I’m waiting for more info
-
Inappropriate?Yes, I use Filezilla. I should be able to upload a file using filezilla.
Thanks for the quick response.
I’m anticipating
-
Inappropriate?Ok, so this is what you do:
1. connect through Filezilla, locate the folder wp-content/themes/fusion/js/ and the file fusion.js
2. download this file, make a backup copy (just in case)
3. edit the file with notepad find and delete this block of code:
// fixes for IE-7 cleartype bug on fade in/out
jQuery.fn.fadeIn = function(speed, callback) {
return this.animate({opacity: 'show'}, speed, function() {
if (jQuery.browser.msie) this.style.removeAttribute('filter');
if (jQuery.isFunction(callback)) callback();
});
};
jQuery.fn.fadeOut = function(speed, callback) {
return this.animate({opacity: 'hide'}, speed, function() {
if (jQuery.browser.msie) this.style.removeAttribute('filter');
if (jQuery.isFunction(callback)) callback();
});
};
jQuery.fn.fadeTo = function(speed,to,callback) {
return this.animate({opacity: to}, speed, function() {
if (to == 1 && jQuery.browser.msie) this.style.removeAttribute('filter');
if (jQuery.isFunction(callback)) callback();
});
};
4. save & upload back this file (replace it if it ask you)
5. that's it - all should work.
let us know if it helped
I’m confident
-
Inappropriate?It did work, and I thank you. One more thing, however. I notice that the "recent post" and "Random" buttons do not work on the bar now...What needs to be done here??
I’m unsure
-
Hi veron,
apparently, your RSS feed was wrong, We've fixed that and now it should work smoothly.
Thank you!
Loading Profile...




EMPLOYEE