Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Mark,

    In this case, while browsing the checkout form, after filling ZIP code, the following code snipped changed from:

    <p class=”mp_cart_direct_checkout”><input type=”submit” name=”mp_shipping_submit” id=”mp_shipping_submit” value=”Continue Checkout ?”></p>
    to:
    <p class=”mp_cart_direct_checkout”><input type=”submit” name=”mp_shipping_submit” id=”mp_shipping_submit” value=”Continue Checkout ?” style=”display: none;”></p>

    To correct it, I’ve commented the following code from marketpress/marketpress-includes/js/store.js:

    function mp_refresh_shipping() {
       	$("#mp_shipping_submit").hide();
        $("#mp-shipping-select-holder").html('<img src="'+MP_Ajax.imgUrl+'" alt="Loading..." />');
        var serializedForm = $('form#mp_shipping_form').serialize();
        $.post(MP_Ajax.ajaxUrl, serializedForm, function(data) {
          $("#mp-shipping-select-holder").html(data);
        	$("#mp_shipping_submit").show();
        });
      }
    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @mawebdesignuk,

    Can you disable coming soon mode on your site and tell me which plugin version you are using so we can have a closer look at this?

    Cheers,
    Predrag

    Thread Starter mawebdesignuk

    (@mawebdesignuk)

    hi Predrag

    This issue is now fixed, thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CONTINUE CHECKOUT BUTTON DISAPPEARS’ is closed to new replies.