Не пойму почему не работает?

Статус
Закрыто для дальнейших ответов.

DiKey

Новичок
Регистрация
08.07.2018
Сообщения
1
Всем привет! Подскажите, почему на сайте не виден checkbox и не правильно работает поле "Повторите пароль". Уже голову сломал...
Код:
<?php
/**
 * JobRoller Registration Form
 * Function outputs the registration form
 *
 *
 * @version 1.6.3
 * @author AppThemes
 * @package JobRoller
 * @copyright 2010 all rights reserved
 *
 */

function jr_register_form( $redirect = '', $role = 'job_lister' ) {
	
    global $posted;

    if ( get_option('users_can_register') ) {

		if ( ! $redirect ) $redirect = get_permalink( get_option('jr_dashboard_page_id') );
		
		$show_password_fields = apply_filters('show_password_fields', true);
    ?>

            <h2><?php _e('Регистрация', 'appthemes'); ?></h2>

            <form action="<?php echo appthemes_get_registration_url(); ?>" method="post" class="account_form" name="registerform" id="login-form">
				
				<?php 
					if ( 'yes' == get_option('jr_allow_job_seekers') ) :
						if (!$role) :
							?>
							<p class="role">
								<label><input type="radio" name="role" tabindex="5" value="job_lister" <?php if (isset($posted['role']) && $posted['role']=='job_lister') echo 'checked="checked"'; ?> /> <?php _e('Я <strong>Работодатель</strong>', 'appthemes'); ?></label>
								<label class="alt"><input type="radio" tabindex="6" name="role" value="job_seeker" <?php if (isset($posted['role']) && $posted['role']=='job_seeker') echo 'checked="checked"'; ?> /> <?php _e('Я <strong>соискатель</strong>', 'appthemes'); ?></label>
							</p>
							<?php
						elseif ($role=='job_lister') :
							echo '<div><input type="hidden" name="role" value="job_lister" /></div>';
						elseif ($role=='job_seeker') :
							echo '<div><input type="hidden" name="role" value="job_seeker" /></div>';
						endif;
					endif;
				?>
				
				<div class="account_form_fields">
				
	                <p>
	                    <label for="user_login"><?php _e('Имя пользователя', 'appthemes'); ?></label><br/>
	                    <input type="text" class="text" tabindex="7" name="user_login" id="user_login" value="<?php if (isset($_POST['user_login'])) echo esc_attr(stripslashes($_POST['user_login'])); ?>" />
	                </p>
	
	                <p>
	                    <label for="user_email"><?php _e('Email', 'appthemes'); ?></label><br/>
	                    <input type="text" class="text" tabindex="8" name="user_email" id="user_email" value="<?php if (isset($_POST['user_email'])) echo esc_attr(stripslashes($_POST['user_email'])); ?>" />
	                </p>
					
					<?php if ( $show_password_fields ) : ?>
	                <p>
	                    <label for="your_password"><?php _e('Введите пароль', 'appthemes'); ?></label><br/>
	                    <input type="password" class="text" tabindex="9" name="pass1" id="pass1" value=""/>
	                </p>
	
	                <p>
	                    <label for="your_password_2"><?php _e('Повторите пароль', 'appthemes'); ?></label><br/>
	                    <input type="password" class="text" tabindex="10" name="pass2" id="pass2" value=""/>
	                </p>

					<p>
						<div id="pass-strength-result" class="hide-if-no-js"><?php _e('Индикатор надежности'); ?></div>
						<p><span class="description indicator-hint"><?php _e('Подсказка: пароль должен содержать не менее семи символов. Чтобы сделать его сильнее, используйте буквы верхнего и нижнего регистра, цифры и символы, как ! " ? $ % ^ &amp; ).', 'appthemes' ); ?></span></p>
					</p>
	                <?php endif; ?>       
	                
	                <?php
					// include the spam checker if enabled();
					if ( current_theme_supports( 'app-recaptcha' ) )
						appthemes_recaptcha();
	                ?>
	                
					<?php if (get_option('jr_terms_page_id')>0) : ?><p>
						<input type="checkbox" name="terms" tabindex="11" value="yes" id="terms" <?php if (isset($_POST['terms'])) echo 'checked="checked"'; ?> /> <label for="terms"><?php _e('Я принимаю', 'appthemes'); ?><a href="<?php echo get_permalink(get_option('jr_terms_page_id')); ?>" target="_blank"><?php _e('правила &amp; условия', 'appthemes'); ?></a>.</label>
					</p><?php endif; ?>
					
					<?php do_action('register_form'); ?>
	                
					<p>
						<input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect); ?>" />				
	                    <input type="submit" class="submit" tabindex="12" name="register" value="<?php _e('Создать учетную запись &rarr;', 'appthemes'); ?>" />
	                </p>

                </div>

				<!-- autofocus the field -->
				<script type="text/javascript">try{document.getElementById('user_login').focus();}catch(e){}</script>

            </form>
<?php
	};

}
 

BaNru

Пацифизжу
Команда форума
Регистрация
13.11.2010
Сообщения
4 138
Там же черным по белому написано условие

<?php if (get_option('jr_terms_page_id')>0) : ?><p>
get_option('jr_terms_page_id') возвращает что-то больше нуля. За что отвечает эта опция вам виднее
 
Статус
Закрыто для дальнейших ответов.
Верх Низ