Problema con Google Friend Connect en WordPress

He pasado gran parte del tiempo buscando una solución para que Google Friend Connect se viese en los navegadores como Firefox, Chrome, Zafari y seguramente algún otro que no probé.
La solución se encuentra en el código de abajo lo que está marcado con color rojo. La solución la encontré en  http://birdbra.in/2009/fix-empty-blue-google-friend-connect-gfc-bar-in-wordpress/

Espero que les sirva  y no se olviden de comentar si realmente les sirvió o les funcionó este parche.

<!– Include the Google Friend Connect javascript library. –>
<script type=”text/javascript” src=”http://www.google.com/friendconnect/script/friendconnect.js”></script>

<script>
window.JSON = {
parse: function(st){
return st.evalJSON();
},
stringify: function(obj){
return Object.toJSON(obj);
}
};
</script>

<!– Define the div tag where the gadget will be inserted. –>
<div id=”div-85329777864xxxx0010″ style=”width:175px;border:1px solid #cccccc;”></div>
<!– Render the gadget into a div. –>
<script type=”text/javascript”>
var skin = {};
skin['BORDER_COLOR'] = ‘#cccccc’;
skin['ENDCAP_BG_COLOR'] = ‘#e0ecff’;
skin['ENDCAP_TEXT_COLOR'] = ‘#333333′;
skin['ENDCAP_LINK_COLOR'] = ‘#0000cc’;
skin['ALTERNATE_BG_COLOR'] = ‘#ffffff’;
skin['CONTENT_BG_COLOR'] = ‘#ffffff’;
skin['CONTENT_LINK_COLOR'] = ‘#0000cc’;
skin['CONTENT_TEXT_COLOR'] = ‘#333333′;
skin['CONTENT_SECONDARY_LINK_COLOR'] = ‘#7777cc’;
skin['CONTENT_SECONDARY_TEXT_COLOR'] = ‘#666666′;
skin['CONTENT_HEADLINE_COLOR'] = ‘#333333′;
skin['NUMBER_ROWS'] = ’4′;
google.friendconnect.container.setParentUrl(‘/’ /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: ‘div-85329777864xxxx0010′,
site: ‘xxxxxxxxxxxxx’ },
skin);
</script>

Solamente copiar el texto en rojo lo demas es a modo de ejemplo.

Enjoy!!!