【发布时间】:2022-01-10 07:11:08
【问题描述】:
我正在寻求帮助。我有 Astra 的(免费版)。它在每个产品上显示两个“添加到购物车”或“选择选项”按钮。如何删除其中之一?
添加此代码会删除两个按钮:
.single_add_to_cart_button,
.add_to_cart_button {
display: none !important;
}
.single-product .cart, .add_to_cart_button {
display: none !important;
}
与此代码相同(顶部按钮上的代码,使用检查工具找到):
.button.add_to_cart_button.product_type_variable {
display: none !important;
}
添加此代码不会删除任何按钮(底部按钮上的代码,使用检查工具找到):
.button.product_type_variable.add-to-cart_button {
display: none !important;
}
非常感谢任何帮助!
【问题讨论】:
标签: css wordpress woocommerce woocommerce-theming