I use the Marketpress plugin in Wordpress, which has been configured to add multiple items to the cart with one click. My problem is this page
The add to cart button appears in Chrome just fine, but it doesn't appear in IE. I believe the problem in this area
if($(".mp_button_addcart").length){ if($('body').hasClass('page-id-1563') || $('body').hasClass('page-id-391')){ console.log('show'); $('.page-bkp-frame').last().append('<input style="display:block" class="total_adddcart" type="button" name="addcart" value="Add To Cart >>" onclick="javascript:addcart_all();" >'); }else{ $('.mp_button_addcart').show(); $('.chk-addcart').remove(); $('.mp_buy_form').attr('style', ''); } }
Any help is greatly appreciated.
source share