• Resolved dune1982

    (@dune1982)


    I love your plugin, it works great with the WordPress Registration form. But it would be great if it would also block registrations that come from the woocommerce Registration form.

    Any way to make this work?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    If they’re not using the default WP login functions, then it’s really hard to hook into them. I’ll take a look, but this is pretty low priority for me as I’ll have to build out a Woo site to test on.

    Thread Starter dune1982

    (@dune1982)

    Thank you mr. Epstein,
    perhaps it helps if i send you the code frome the woocommerce Login/Registration form

    <?php
    /**
     * Login Form
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-login.php.
     *
     * HOWEVER, on occasion WooCommerce will need to update template files and you
     * (the theme developer) will need to copy the new files to your theme to
     * maintain compatibility. We try to do this as little as possible, but it does
     * happen. When this occurs the version of the template file will be bumped and
     * the readme will list any important changes.
     *
     * @see     https://docs.woocommerce.com/document/template-structure/
     * @author  WooThemes
     * @package WooCommerce/Templates
     * @version 2.6.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    ?>
    
    <?php wc_print_notices(); ?>
    
    <?php do_action( 'woocommerce_before_customer_login_form' ); ?>
    
    <?php if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'yes' ) : ?>
    
    <div class="u-columns col2-set" id="customer_login">
    
    	<div class="u-column1 col-1">
    
    <?php endif; ?>
    
    		<h2><?php _e( 'Login', 'woocommerce' ); ?></h2>
    
    		<form method="post" class="login">
    
    			<?php do_action( 'woocommerce_login_form_start' ); ?>
    
    			<p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide">
    				<label for="username"><?php _e( 'Username or email address', 'woocommerce' ); ?> <span class="required">*</span></label>
    				<input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" value="<?php if ( ! empty( $_POST['username'] ) ) echo esc_attr( $_POST['username'] ); ?>" />
    			</p>
    			<p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide">
    				<label for="password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label>
    				<input class="woocommerce-Input woocommerce-Input--text input-text" type="password" name="password" id="password" />
    			</p>
    
    			<?php do_action( 'woocommerce_login_form' ); ?>
    
    			<p class="form-row">
    				<?php wp_nonce_field( 'woocommerce-login', 'woocommerce-login-nonce' ); ?>
    				<input type="submit" class="woocommerce-Button button" name="login" value="<?php esc_attr_e( 'Login', 'woocommerce' ); ?>" />
    				<label for="rememberme" class="inline">
    					<input class="woocommerce-Input woocommerce-Input--checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /> <?php _e( 'Remember me', 'woocommerce' ); ?>
    				</label>
    			</p>
    			<p class="woocommerce-LostPassword lost_password">
    				<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php _e( 'Lost your password?', 'woocommerce' ); ?></a>
    			</p>
    
    			<?php do_action( 'woocommerce_login_form_end' ); ?>
    
    		</form>
    
    <?php if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'yes' ) : ?>
    
    	</div>
    
    	<div class="u-column2 col-2">
    
    		<h2><?php _e( 'Register', 'woocommerce' ); ?></h2>
    
    		<form method="post" class="register">
    
    			<?php do_action( 'woocommerce_register_form_start' ); ?>
    
    			<?php if ( 'no' === get_option( 'woocommerce_registration_generate_username' ) ) : ?>
    
    				<p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide">
    					<label for="reg_username"><?php _e( 'Username', 'woocommerce' ); ?> <span class="required">*</span></label>
    					<input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="reg_username" value="<?php if ( ! empty( $_POST['username'] ) ) echo esc_attr( $_POST['username'] ); ?>" />
    				</p>
    
    			<?php endif; ?>
    
    			<p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide">
    				<label for="reg_email"><?php _e( 'Email address', 'woocommerce' ); ?> <span class="required">*</span></label>
    				<input type="email" class="woocommerce-Input woocommerce-Input--text input-text" name="email" id="reg_email" value="<?php if ( ! empty( $_POST['email'] ) ) echo esc_attr( $_POST['email'] ); ?>" />
    			</p>
    
    			<?php if ( 'no' === get_option( 'woocommerce_registration_generate_password' ) ) : ?>
    
    				<p class="woocommerce-FormRow woocommerce-FormRow--wide form-row form-row-wide">
    					<label for="reg_password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label>
    					<input type="password" class="woocommerce-Input woocommerce-Input--text input-text" name="password" id="reg_password" />
    				</p>
    
    			<?php endif; ?>
    
    			<!-- Spam Trap -->
    			<div style="<?php echo ( ( is_rtl() ) ? 'right' : 'left' ); ?>: -999em; position: absolute;"><label for="trap"><?php _e( 'Anti-spam', 'woocommerce' ); ?></label><input type="text" name="email_2" id="trap" tabindex="-1" autocomplete="off" /></div>
    
    			<?php do_action( 'woocommerce_register_form' ); ?>
    			<?php do_action( 'register_form' ); ?>
    
    			<p class="woocomerce-FormRow form-row">
    				<?php wp_nonce_field( 'woocommerce-register', 'woocommerce-register-nonce' ); ?>
    				<input type="submit" class="woocommerce-Button button" name="register" value="<?php esc_attr_e( 'Register', 'woocommerce' ); ?>" />
    			</p>
    
    			<?php do_action( 'woocommerce_register_form_end' ); ?>
    
    		</form>
    
    	</div>
    
    </div>
    <?php endif; ?>
    
    <?php do_action( 'woocommerce_after_customer_login_form' ); ?>
    Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    It’s Ms. not Mr. And that is a VERY custom registration, so no it won’t work. If I get the time, I’ll see if I can do anything.

    Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Okay that was an incredibly weird thing.

    Yes you can. You have to wait for v 2.6 of Ban Hammer, but the how-to will be this: https://github.com/Ipstenu/ban-hammer/wiki#woocommerce

    Thread Starter dune1982

    (@dune1982)

    Sorry for the Mr. But Thank you verry much for your work Ms. Epstein. This will help me a lot.

    Is this solution working for anyone? I tried the WooCommerce custom filter, but had no luck. It is working fine with the default WordPress registration though. Any ideas?

    Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    They may have changed it in WooCommerce 3.0

    The problem is I don’t use WooCommerce so I have to build out a test box to figure this out, which takes time. :/

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Ban Hammer and woocommerce’ is closed to new replies.