ShopBase Help Center

Explore How-To's and learn eCommerce best practices from our knowledge base.

在感谢页面上隐藏产品图片

在感谢页面上隐藏产品图片

本文也有以下语言版本:

感谢页面是客户在完成订单支付后被定向到的页面。如果您不希望商品图片出现在感谢页面中,请按照以下说明了解如何在商店中将其隐藏。

具体步骤:

访问ShopBase后台管理 > 在线店铺 > 通用
向下滚动到 其他脚本,将以下的脚本添加到 标头选项。
<script>
	window.sbsdk.ready(function() {
	    window.sbsdk.page.onContextUpdate(function(context) {
	    	switch (context.type) {
				case 'post_checkout':
				    // Inject code tracking at thank you page here
				    document.querySelectorAll('.order-summary__section--product-list').forEach(function(e) {
                        e.remove();
                    })
	    			break;
				default:
	    			break;
	    	};
	    });
	});
</script>
点击 保存