Forum Replies Created
-
AuthorPosts
-
chrishudsonSpectator
Thanks
chrishudsonSpectator[http://golflessonacademy.com]
Thanks and sorry to be such a bother.
chris
chrishudsonSpectatorOk…makes sense. So where do I find the area to do this?
When checked the plugin will automatically sign up the customer of every transaction to your MailChimp List specified below. If you want to selectively signup customers on a per product basis then use the Autoresponder settings of that product.
Does this mean I would just un-check the global? And by doing so, will it take care of everything on its own? Or where do I set up things correctly in the autoresponder settings of a certain product. I just am not sure where it is located. Is it actually in the Mailchimp website side of things and if so are there any tutorials on how to do it?
Thanks,
chris
chrishudsonSpectatorI think I just found the problem. My IPN is not turned on in Paypal. And I do not have the PDT token entered. Does the PDT have to be set up if there are no files to be downloaded?
Is this the way I need to set it up with paypal. I do not have a store on the site. It is just one button right now that takes some to the checkout page. Then once clicked it takes them to paypal. After the transaction it should take them back to a thank you page letting them know their login details are being sent to their email.
So I am not really sure if what is below is correct. Since i do not have a store. Am I missing something here. Or do I just need to put in golflessonacademy.com and all of this will happen automatically
[https://mysite.com/does_anything_need_to_be_here/ipn_main_handler.php]
January 3, 2012 at 6:00 am in reply to: Question about JavaScript – Load JavaScript in Footer #39847chrishudsonSpectatorComplete 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>
January 2, 2012 at 7:34 am in reply to: Question about JavaScript – Load JavaScript in Footer #39845chrishudsonSpectatorWait a sec. These two are still showing up at the top but the others have been moved to the bottom. Did I not include something here? Again thank you so much for your help!!!
<script type=’text/javascript’ src=’http://golflessonacademy.com/wp-content/plugins/wp-cart-for-digital-products/lib/jquery.lightbox-0.5.pack.js?ver=3.2.1′</scr>
January 2, 2012 at 7:29 am in reply to: Question about JavaScript – Load JavaScript in Footer #39844chrishudsonSpectatorI think that did it. Thanks you so much. I have tested it and I can login using the emember plugin and access all of the video content so I think my members should be able to do the same.
Thanks again!!!
January 2, 2012 at 12:27 am in reply to: Question about JavaScript – Load JavaScript in Footer #39842chrishudsonSpectatorThis is the entire change I made. nothing else. So would I remove it, or where would I add the end? All I have tried to do is follow the direction of this post which started on page one. Just copy and paste. Unfortunately I am not a skilled coder but am trying desperately to get this done. Several people are complaining that the video stuff on the site is taking over 10 seconds to load for them. This is not good when it is a video membership site. I have removed several plugins and just need a way to move this info to the footer. It may not solve them problem entirely but I think there are over 9 something calls that would be eliminated once i can get this done.
Then I will be able to move to the next. One step at a time. But this experience has been frustrating because I know i can follow directions, it just has not worked out in my favor yet.
Thanks and i look forward to your response.
January 1, 2012 at 6:29 am in reply to: Question about JavaScript – Load JavaScript in Footer #39840chrishudsonSpectatorBelow is what I did. Is there anywhere you can see the error I have made? The top and bottom lines are just what it is placed in between.
Thanks
function eMember_load_js()
{
if(!is_admin())
{
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.validationEngine.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.hint.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/ajaxupload.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.tools.min.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.libs.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.pagination-2.0rc.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.confirm-1.3.js”></script>’;
}
}
add_action(‘wp_footer’, ‘eMember_load_js’);
function load_library(){
……..
……..
if(!is_admin()){
wp_enqueue_style(‘eMember.style’,WP_EMEMBER_URL.’/css/eMember_style.css’);
wp_enqueue_style(‘eMember.style.custom’,WP_EMEMBER_URL.’/css/eMember_custom_style.css’);
wp_enqueue_style(‘validationEngine.jquery’,WP_EMEMBER_URL.’/css/validationEngine.jquery.css’);
}
}
}
function wp_eMember_widget_init(){
January 1, 2012 at 6:23 am in reply to: Question about JavaScript – Load JavaScript in Footer #39839chrishudsonSpectatorI followed your directions and it came up with this error. Do you have any idea why or how to fix it?
Parse error: syntax error, unexpected ‘}’ in /home/golfless/public_html/wp-content/plugins/wp-eMember/wp_eMember1.php on line 815
Am i missing a }or{ somewhere?
Thanks
December 31, 2011 at 7:02 pm in reply to: Question about JavaScript – Load JavaScript in Footer #39837chrishudsonSpectatorWould part 2 be done like this:
function load_library(){
function eMember_load_js()
{
if(!is_admin())
{
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.validationEngine.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.hint.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/ajaxupload.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.tools.min.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.libs.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.pagination-2.0rc.js”></script>’;
echo ‘<script type=”text/javascript” src=”‘.WP_EMEMBER_URL.’/js/jquery.confirm-1.3.js”></script>’;
}
}
add_action(‘wp_footer’, ‘eMember_load_js’);
global $emember_config;
wp_enqueue_script(‘jquery’);
December 31, 2011 at 6:43 am in reply to: Question about JavaScript – Load JavaScript in Footer #39835chrishudsonSpectatorJust checking to see if anyone has gotten this yet? Just need to find out how to do it manually.
Thanks
December 30, 2011 at 9:57 am in reply to: Question about JavaScript – Load JavaScript in Footer #39834chrishudsonSpectatorI have already tried all of these and they are not working. Can you please tell me how to it manually please so I can move forward.
Thanks ahead of time.
December 29, 2011 at 6:50 pm in reply to: Question about JavaScript – Load JavaScript in Footer #39832chrishudsonSpectatorStill just looking around to find out how to move the scripts to the bottom. Thanks.
December 29, 2011 at 9:20 am in reply to: Question about JavaScript – Load JavaScript in Footer #39831chrishudsonSpectatorYou mentioned there is a way where i can move the java script files for my plugins to the footer. Can you tell me how to do this. I have removed a bunch of plugins from my site. The only ones I have there now are WP eStore, Wp Emember, WordPress Importer, Enhanced text widget, Cloud Flare, 404 redirection, and caption pix. It has helped to speed things up a little bit.
I have tried several times over the past week to get everything to work with W3TC but for some reason i am unable to get it to work with the theme I am working. I have followed to the tee, 3 different tutorials over this time and to be honest i am getting exhausted trying to figure the whole thing out.
If You look at the source code now it will show some improvement because of the plugins I removed but if I could just move the eStore and Emember js files to the bottom it will then only have the necessary theme stuff there and should also help. There are a total of 9, so I think it will help.
Please advice.
Thanks for you suggestion with the W3TC but it didn’t work and I just need to find a different solution so I can try to get back to writing on my blog. Thanks again for your time and all your help.
Chris
-
AuthorPosts