伙计们,这是我的第一个问题,提前谢谢你们。
我试图在每个产品页面上集成一个代码,但它产生了一些冲突:
function print_my_inline_script() {
if ( wp_script_is( \'some-script-handle\', \'done\' ) ) {
?>
<script type="text/javascript">
<div id="BVRRContainer"></div>
<script type="text/javascript">
$BV.ui( \'rr\', \'show_reviews\', {
doShowContent : function () {
// If the container is hidden (such as behind a tab), put code here to make it visible
//(open the tab).
}
});
</script>
</script>
<?php
}
}
add_action( \'woocommerce_after_single_product\', \'print_my_inline_script\' );
有什么帮助吗?