Complete and working. Thank you!!! Does the following need to stay where it is in the header or could it be moved as well? Currently it is located in the header. All the other changes have been made and accomplished. Again, thank you for all your help!!!
<script type="text/javascript">
JS_WP_ESTORE_CURRENCY_SYMBOL = "$";
JS_WP_ESTORE_VARIATION_ADD_STRING = "+";
JS_WP_ESTORE_VARIATION_THOUSAND_SEPERATOR = ",";
</script><script type="text/javascript" src="http://golflessonacademy.com/wp-content/plugins/wp-cart-for-digital-products/lib/eStore_read_form.js"></script><script type="text/javascript">
jQuery(document).ready(function($){
emember_forget_pass_trigger = '';
$forgot_pass_overlay = $(".forgot_pass_link").click(function(e){
$("#wp_emember_email_mailMsg").html("").hide();
$("#wp_emember_email_mailForm").show();
$('.eMember_text_input').val("");
}).overlay({
mask: {
color: '#ebecff'/*'darkred'*//*'#E7E7E7'*/,
loadSpeed: 200,
top: '30%',
opacity: 0.9
},
api:true,
onBeforeLoad:function(){
emember_forget_pass_trigger = this.getTrigger();
},
closeOnClick: false
});
$("#wp_emember_mailSendForm").live('submit',function(e){
var $this = this;
var divs = jQuery($this).parent().parent().find("div");
var emailId = jQuery($this).find("input").eq(0).val();
if(emailId=="")
return;
divs.eq(1).hide();
divs.eq(0).html("").append(jQuery('
Please Wait...
')).show();
jQuery.get( 'http://golflessonacademy.com/wp-admin/admin-ajax.php',{"event":"send_mail","action":"send_mail","email":emailId},
function(data){
divs.eq(0).html("").append(jQuery('
'+data.msg+'
'));
setTimeout("emember_forget_pass_trigger.overlay().close()", 1000);
},
"json");
e.preventDefault();
});
});
</script>