Shopify 登陆后台点击 Settings
点击Store details 中Store currency section, 点击 Change formatting.
改为下面内容:
HTML with currency format:
<span class=hidden>${{ amount }} USD</span>
HTML without currency format:
<span class=hidden>${{ amount }}</span>
注意:此操作隐藏了整站的产品价格!
如果以上操作还不能隐藏价格,继续操作下面:
编辑主题代码
Online Store > Themes> Edit code
Assets > theme.css.liquid
增加代码:
.hidden {
display: none;
}
如果要恢复价格,直接后台变换一个其他币种,然后再切换回美金即可。