michael2
9/11/2017 - 12:20 AM

Enquiry Only Shopping Cart - this code will help refine enquiry only shopping cart process. Make sure in the shopping cart settings the retu

Enquiry Only Shopping Cart - this code will help refine enquiry only shopping cart process. Make sure in the shopping cart settings the return page is set to the thank_you.html page. The css below will remove price globally. You also need to turn on 'Email Shopping' in Edit Customer.

.cartItemPrice, .cartItemMain .cartItemPrice, .viewCartRow .viewCartPrice, .checkoutSection .cartPricePrice, .priceTotal, .checkoutReview .checkoutFinalPrice, .viewCartTotal, .cartSubTotal, .priceSection {display: none !important;} 
<script type="text/javascript">
  $(function() {   
    $('input.cartBtnHL').val('Submit Enquiry');
    $('.cartItemAdd').html('<span class="fontAwesome"></span>Enquire');
    $('.sectionFW .checkoutSection h2').html('<div class="checkoutStep">1</div>Enquiry Process');
    $('#shippingSection .checkoutSection h2, #shippingSection .checkoutSection form').hide();
    $('#viewCart').hide();
  });   
</script>