是否可以在本地机器上测试 google 客户评论徽章
Is it possible to test the google customer review badge on the local machine
所以我使用了以下代码来实现客户评论徽章。
<script src="https://apis.google.com/js/platform.js?onload=renderBadge"
async defer>
</script>
<script>
window.renderBadge = function() {
var ratingBadgeContainer = document.createElement("div");
document.body.appendChild(ratingBadgeContainer);
window.gapi.load('ratingbadge', function() {
window.gapi.ratingbadge.render(
ratingBadgeContainer, {
"merchant_id": 42,
"position": "BOTTOM_LEFT"
});
});
}
</script>
<!-- END GCR Badge Code -->
<!-- BEGIN GCR Language Code -->
<script>
window.___gcfg = {
lang: 'en_US'
};
</script>
<g:ratingbadge merchant_id=MERCHANT_ID></g:ratingbadge>
但是有可能在本地机器上运行吗?
另外,本地机器是指 运行 我计算机上的 visual studio 解决方案。所以它不在可公开访问的网站中。
干杯
好的,我明白了,
事实证明徽章无法在本地计算机上呈现 http://localhost
我从 google 获得的客户评论代码也是通过 google 标签管理器实现的。
经过分析,徽章没有呈现,所以当我将客户评论代码添加到页脚(而不是通过标签管理器)时,它正在工作。
Conclusion
The google customer reviews code must be on the live server to
work.(So not http://localhost) etc.
The code must be included directly in the theme files. NOT THROUGH
GOOGLE TAG MANAGER
所以我使用了以下代码来实现客户评论徽章。
<script src="https://apis.google.com/js/platform.js?onload=renderBadge"
async defer>
</script>
<script>
window.renderBadge = function() {
var ratingBadgeContainer = document.createElement("div");
document.body.appendChild(ratingBadgeContainer);
window.gapi.load('ratingbadge', function() {
window.gapi.ratingbadge.render(
ratingBadgeContainer, {
"merchant_id": 42,
"position": "BOTTOM_LEFT"
});
});
}
</script>
<!-- END GCR Badge Code -->
<!-- BEGIN GCR Language Code -->
<script>
window.___gcfg = {
lang: 'en_US'
};
</script>
<g:ratingbadge merchant_id=MERCHANT_ID></g:ratingbadge>
但是有可能在本地机器上运行吗?
另外,本地机器是指 运行 我计算机上的 visual studio 解决方案。所以它不在可公开访问的网站中。
干杯
好的,我明白了,
事实证明徽章无法在本地计算机上呈现 http://localhost
我从 google 获得的客户评论代码也是通过 google 标签管理器实现的。 经过分析,徽章没有呈现,所以当我将客户评论代码添加到页脚(而不是通过标签管理器)时,它正在工作。
Conclusion
The google customer reviews code must be on the live server to work.(So not http://localhost) etc.
The code must be included directly in the theme files. NOT THROUGH GOOGLE TAG MANAGER