经过大量工作,我设法将所有信息从捆绑产品的自定义页面移至首页。我现在想要隐藏将用户引导到自定义页面的按钮。但是,这两个按钮都使用保存类名称。
此页面上有两个单独的按钮:我需要隐藏第一个按钮
按钮1是:
<div class=“product-shop”>
<div class’Product-main-info”>
<div>
<button class="button btn-cart" type="button" onclick="Enterprise.Bundle.start();">
<span>
<span>Customize and Add to Cart</span>
</span>
</button>
</div>
</div>
按钮2是:
<div class="add-to-cart">
<label for="qty">Qty:</label>
<input id="qty" class="input-text qty" type="text" title="Qty" value="1" maxlength="12" name="qty">
<button class="button btn-cart" onclick="productAddToCartForm.submit(this)" title="Buy Now" type="button">
<span>
<span>Buy Now</span>
</span>
</button>
</div>
我尝试使用CSS隐藏按钮但是只能关闭两个按钮。这是漫长的Magento GO定制项目的最后一步。任何帮助非常感谢。
此致
马克