Disable registration by hiding register button

This commit is contained in:
Bea 2021-09-07 18:31:22 +02:00 committed by GitHub
parent 2124feb7b2
commit c6d90d08fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -91,7 +91,13 @@ $type_default = apply_filters( 'opalestate_register_form_default_type', 'subscri
<?php if ( $redirect ) : ?>
<input type="hidden" name="redirect" value="<?php echo esc_url( $redirect ); ?>">
<?php endif; ?>
<input type="submit" class="opalestate-button button btn btn-primary" name="register" value="<?php esc_attr_e( 'Register', 'opalestate-pro' ); ?>"/>
<?php
/** DISABLE REGISTATION BY HIDING THE BUTTON
* <input type="submit" class="opalestate-button button btn btn-primary" name="register" value="<?php esc_attr_e( 'Register', 'opalestate-pro' ); ?>"/>
*/
?>
</p>
<?php do_action( 'opalestate_member_after_register_form' ); ?>