我正试着在我的重氮主题网站(Plone 4.1)上使用collective.simplesocial,注意到like按钮坏了。
<fb:like>标记被转换为<like> (去掉了前缀)。所有其他的xfbml标签都遇到了同样的问题。
我曾尝试将xmlns:fb="http://www.facebook.com/2008/fbml"添加到html标签中,但也不起作用。
有什么办法克服这个问题吗?
发布于 2011-10-02 22:22:48
这应该适用于plusone按钮(请参阅注释以获得对原始问题的回答):
<xsl:template match="plusone">
<xsl:element name="g:{local-name()}" xmlns:g="http://base.google.com/ns/1.0">
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:template>https://stackoverflow.com/questions/7625512
复制相似问题