Jump to content

Link Appears In Internet Explorer Browser But Not Chrome


Recommended Posts

Hi, I'm trying to figure out how to fix a problem I'm having with my links. My "bookmark" link appears in my internet explorer browser but it doesn't appear when I use google chrome. I'd like to know how I can fix this problem. I've attached 2 screen shots which show the difference. Thanks

post-312976-0-21205400-1325125707_thumb.jpg

post-312976-0-76907200-1325125764_thumb.jpg

Link to comment
Share on other sites

Hi smiles,

This is something we've identified and fixed recently. In your js/tools.js file, please delete lines 143 and 144:

 

if (window.navigator.userAgent.indexOf('Chrome') != -1)
 return ('');

 

And then, change "else if" to "if" on line 145, and that should resolve your issue.

 

Please let me know if this works for you. If you have any additional questions about this, please see the report on our Bug Tracker.

 

I hope this helps.

 

-Mike

Link to comment
Share on other sites

Hi, actually my code under "Write bookmark link object" is different from what I saw attached on the previous forum. Mine reads

 

if (window.sidebar || window.external)

return ('<a href="javascript:addBookmark(\'' + escape(url) + '\', \'' + escape(title) + '\')">' + insert + '</a>');

else if (window.opera && window.print)

return ('<a rel="sidebar" href="' + escape(url) + '" title="' + escape(title) + '">' + insert + '</a>');

return ('');

 

Where would I insert the code that you were telling me about? Thanks ,

Link to comment
Share on other sites

×
×
  • Create New...