Tips and Tricks HQ Support

Support site for Tips and Tricks HQ premium products

  • Home
  • Contact Us
  • Documentation
  • Forum Home
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
You are here: Home

SanDiegoWebGuy

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • March 8, 2012 at 10:56 pm in reply to: reCaptcha Not Showing Up Correctly – How to Implement Different Captcha? #37796
    SanDiegoWebGuy
    Member

    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? #42805
    SanDiegoWebGuy
    Member

    Yeah, 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 #42699
    SanDiegoWebGuy
    Member

    Hrm. 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.

    March 4, 2012 at 8:32 pm in reply to: Manual Payment Gateway won't go away #42484
    SanDiegoWebGuy
    Member

    Key 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.

    March 4, 2012 at 6:44 pm in reply to: Styling ReCaptcha in eMember registration page #25436
    SanDiegoWebGuy
    Member

    Just 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>
    <?php

    change blackglass to any other offered theme: red, white, clean, or blackglass.

    March 4, 2012 at 6:20 pm in reply to: Password and email verification fileds…. #25314
    SanDiegoWebGuy
    Member

    Meh. 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

    March 4, 2012 at 6:17 pm in reply to: eMember – want to use email as username #42364
    SanDiegoWebGuy
    Member

    I 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]

    February 28, 2012 at 10:35 pm in reply to: Manual Payment Gateway won't go away #42482
    SanDiegoWebGuy
    Member

    I 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!

    February 28, 2012 at 10:03 pm in reply to: Manual Payment Gateway won't go away #42481
    SanDiegoWebGuy
    Member

    Even 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!!

    February 26, 2012 at 12:09 am in reply to: Password and email verification fileds…. #25312
    SanDiegoWebGuy
    Member

    So 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 #25452
    SanDiegoWebGuy
    Member

    More 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.

  • Author
    Posts
Viewing 11 posts - 1 through 11 (of 11 total)

Forum Related

  • Forum Home
  • Forum Search
  • Forum Registration
  • Forum Login

Support Related Forms

  • Contact Us
  • Customer Support
  • Request a Plugin Update
  • Request Fresh Download Links

Useful Links

  • Plugin Upgrade Instructions
  • WP eStore Documentation
  • WP eMember Documentation
  • WP Affiliate Platform Documentation
  • Tips and Tricks HQ Home Page
  • Our Projects

Quick Setup Video Tutorials

  • WP eStore Video Tutorial
  • WP eMember Video Tutorial
  • WP Affiliate Platform Video Tutorial
  • Lightbox Ultimate Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Shopping Cart Plugin
  • Simple Download Monitor

Copyright © 2025 | Tips and Tricks HQ