Forum Replies Created
-
AuthorPosts
-
March 8, 2012 at 10:56 pm in reply to: reCaptcha Not Showing Up Correctly – How to Implement Different Captcha? #37796SanDiegoWebGuyMember
I’m having the same problem. Doesn’t fix it to change to different reCaptcha color schemes, either. I’ve even tried fiddling with the page layout a bit and had no success in repairing the layout…
March 8, 2012 at 7:05 pm in reply to: "Your Subscription has Expired" on section protection…how to disable or alter? #42805SanDiegoWebGuyMemberYeah, but none of that is relevant to “Your account is expired.”
Protection messages are only for emember detection. If the user is a valid emember, but his account is expired, the expired message is displayed, regardless of whether or not you add the “do_not_show_restricted_msg=1” tag.
March 4, 2012 at 8:54 pm in reply to: Having trouble getting WP eMember & Authorize.net ARB to work #42699SanDiegoWebGuyMemberHrm. I am a dufus, still. It appears that upon further experimentation, I AM in fact completing transactions as they were supposed to be done. Please close this thread.
SanDiegoWebGuyMemberKey Master,
If I can privately mail you the login information, and arrange a time when I can disable the .htaccess password on the site (we’re still testing and don’t want the site openly public). From there, it should be readily obvious. I’m using a test account on Authorize.net so you can start a transaction with no worry of being charged.
SanDiegoWebGuyMemberJust in case anyone is still interested in this issue, you can easily apply any of the themes shown on this page: http://code.google.com/apis/recaptcha/docs/customization.html
Just open wp-eMemberrecaptchalib.php and find:
/**
* Gets the challenge HTML (javascript and non-javascript version).
* This is called from the browser, and the resulting reCAPTCHA HTML widget
* is embedded within the HTML form it was called from.
* @param string $pubkey A public key for reCAPTCHA
* @param string $error The error given by reCAPTCHA (optional, default is null)
* @param boolean $use_ssl Should the request be made over ssl? (optional, default is false)
* @return string - The HTML to be embedded in the user's form.
*/…and enter AFTER:
?>
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'blackglass'
};
</script>
<?phpchange blackglass to any other offered theme: red, white, clean, or blackglass.
SanDiegoWebGuyMemberMeh. Added it myself to registration page. See this thread for details on how to implement email as username and password verification on rego pages:
https://support.tipsandtricks-hq.com/forums/topic/want-to-use-email-as-username
SanDiegoWebGuyMemberI was able to modify the registration page myself. I simply forced it to validate that the username was an email and modified the email field, which now validates as equal to the the user name field, and [strong]disabled[/strong] the plug-in’s ability to create a WordPress account. Without that, there’s no longer a conflict. I also added a second password field to verify the password.
If you’re interested in what/where, here’s the scoop:
open wp-eMembereMember_registration_utils.php
Find the eMember rego form, around line 592.
<table width="95%" border="0" cellpadding="3" cellspacing="3" class="forms">
<tr>
<td><label for="wp_emember_user_name" class="eMember_label"><?php echo EMEMBER_USERNAME;?>: </label></td>
<td><input type="text" id="wp_emember_user_name" name="wp_emember_user_name" size="20" value="<?php echo $_POST['wp_emember_user_name'];?>" class="validate[required,custom[onlyLetterNumberUnderscore],minSize[4]<?php echo $letter_number_underscore?>,ajax[ajaxUserCall]] eMember_text_input" /></td>
</tr>
<tr>
<td><label for="wp_emember_pwd" class="eMember_label"><?php echo EMEMBER_PASSWORD;?>: </label></td>
<td><input type="password" id="wp_emember_pwd" name="wp_emember_pwd" size="20" value="<?php echo $_POST['wp_emember_pwd'];?>" class="validate[required,minSize[4]] eMember_text_input" /></td>
</tr>
<tr>
<td><label for="wp_emember_email" class="eMember_label"><?php echo EMEMBER_EMAIL;?>: </label></td>
<td><input type="text" id="wp_emember_email" name="wp_emember_email" size="20" value="<?php echo $_POST['wp_emember_email'];?>" class="validate[required,custom[email]] eMember_text_input" <?php echo $readonlyemail; ?> /></td>
</tr>…and replace the code above with this:
<table width="95%" border="0" cellpadding="3" cellspacing="3" class="forms">
<tr>
<td><label for="wp_emember_user_name" class="eMember_label"><?php echo EMEMBER_USERNAME;?>: *</label></td>
<td><input type="text" id="wp_emember_user_name" name="wp_emember_user_name" size="20" value="<?php echo $_POST['wp_emember_user_name'];?>" class="validate[required,custom[/email][email]] eMember_text_input" /></td>
</tr>
<tr>
<td><label for="wp_emember_email" class="eMember_label"><?php echo EMEMBER_EMAIL;?>: *</label></td>
<td><input type="text" id="wp_emember_email" name="wp_emember_email" size="20" value="<?php echo $_POST['wp_emember_email'];?>" class="validate[required,custom[/email][email],equals[wp_emember_user_name]] eMember_text_input" <?php echo $readonlyemail; ?> /></td>
</tr>
<tr>
<td><label for="wp_emember_pwd" class="eMember_label"><?php echo EMEMBER_PASSWORD;?>: *</label></td>
<td><input type="password" id="wp_emember_pwd" name="wp_emember_pwd" size="20" value="<?php echo $_POST['wp_emember_pwd'];?>" class="validate[required,minSize[4]] eMember_text_input" /></td>
</tr>
<tr>
<td><label for="wp_emember_pwd_r" class="eMember_label"><?php echo EMEMBER_PASSWORD_REPEAT ?>: *</label></td>
<td><input type="password" id="wp_emember_pwd_r" name="wp_emember_pwd_r" size="20" value="" class="validate[equals[wp_emember_pwd]] eMember_text_input" />
</td>[/email]
SanDiegoWebGuyMemberI managed to remove the manual gateway. I’m a dufus. Leave it at that.
Still would like to fix the fancy redirect issue, though. Anyone with insight is welcome to advise!
SanDiegoWebGuyMemberEven more annoying: I cannot get “Enable Fancy Redirection On Checkout” to do anything except take the user to a PayPal account, even though I’ve removed all PayPal account information! I want to only use Authorize.net…does this feature only work with PayPal? VERY ANNOYING!!
SanDiegoWebGuyMemberSo it’s been a year…did this ever happen? I’m not seeing it if it did, and I SURE could use it!!
February 7, 2012 at 12:26 am in reply to: Discount automatically apply to differents member level #25452SanDiegoWebGuyMemberMore than a year has passed, and this feature is still apparently on the cutting room floor. Any chance to see it revived? I would really value the ability to grant discounts on specific items if the buyer has a current membership.
-
AuthorPosts