You can look up your order by entering the order number and your email here. Order Number Email Lookup Order #lookup_form{ background-color:rgba(255,255,255,1) !important; border-color:#F0F0F0 !important; border: 1px solid #D8D8D8 !important; /* this needs to be adjustable */ border-width:6px !important; font-size:10px !important; /*color:#000000 !important;*/ padding: 20px; max-width: 400px; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } #lookup_form label { display: block; } #lookup_form input { height: 30px; margin-bottom: 10px; width: 100%; max-width: 210px; } #lookup_form input.btn { margin: 10px 0 0 0; width: auto; max-width:100%; } .login_btn{ display:block; } app_root ="https:\/\/om.boldapps.net"; s_shop_url = "https://om.boldapps.net/s/swab-its/"; csrf_bold_token = "5ebb5a599ce2f2f0cc6afb1b0bd2ab00"; login_error_text = "Sorry - Order Not Found."; login_intro_text = "You can look up your order by entering the order number and your email here."; function bold_lookup_order(){ var post_data = jQuery('#login').serialize(); jQuery.ajax({ type: "POST", url: s_shop_url+"front_end/order_lookup/get_order", crossDomain: true, contentType: "application/x-www-form-urlencoded", data: post_data, cache: false, dataType:"html", success: function(data){ if(data != "not found"){ jQuery('#lookup-container').empty(); jQuery('#lookup-container').html(data); jQuery('.show-order').click(function(e){ e.preventDefault(); jQuery(this).next('.order-container').show(); jQuery(this).hide(); }); }else{ jQuery(".intro-text").html(login_intro_text + " - " + login_error_text); } }, error: function(xhr, textStatus, errorThrown) { alert("Failed to get order details. Please contact Bold regarding this issue."); } }); }