January 18, 2019 at 18:02
#216842
PcMaxx
Participant
Hi Radu,
I was mistaken. This link above is not in that file. Is this the line I change? <a href="#" data-reveal-id="register_panel" class="radius secondary small button"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a></span><?php } ?>
Below is the complete code I see in the file. That exact line isn’t in there. Tho, one very close.
COPY CODE
<div id="login_panel" class="reveal-modal">
<div class="row">
<div class="twelve columns">
<h5><i class="icon-user icon-large"></i> <?php _e("SIGN INTO YOUR ACCOUNT", 'kleo_framework');?><?php if(get_option('users_can_register')) { ?> <span class="subheader right small-link"><a href="#" data-reveal-id="register_panel" class="radius secondary small button"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a></span><?php } ?></h5>
</div>
<form action="<?php echo wp_login_url(apply_filters('kleo_modal_login_redirect', '') ); ?>" id="login_form" name="login_form" method="post" class="clearfix">
<div class="six columns">
<input type="text" id="username" required name="log" class="inputbox" value="" placeholder="<?php _e("Username", 'kleo_framework');?>">
</div>
<div class="six columns">
<input type="password" id="password" value="" required name="pwd" class="inputbox" placeholder="<?php _e("Password", 'kleo_framework');?>">
</div>
<p class="twelve columns">
<label>
<input type="checkbox" value="forever" name="rememberme" id="rememberme"> <?php _e( "Remember me", "kleo_framework" ); ?>
</label>
<small>
<i class="icon-lock"></i>
<?php
if( sq_option('privacy_page', '#') != "#" && sq_option('privacy_page', '#') != '' ) {
$privacy_page_id = sq_option('privacy_page');
/* WPML compatibility */
if ( function_exists( 'icl_object_id' ) ) {
$privacy_page_id = icl_object_id( $privacy_page_id, 'page', true );
}
$privacy_link = get_permalink( $privacy_page_id );
printf( __( 'Your <a href="%s" target="_blank">privacy</a> is important to us and we will never rent or sell your information.', 'kleo_framework' ), $privacy_link );
}
?>
</small>
<div class="login-form-hook">
<?php do_action('login_form');?>
</div>
</p>
<div class="twelve columns">
<button type="submit" id="login" name="wp-submit" class="radius secondary button"><i class="icon-unlock"></i> <?php _e("LOG IN", 'kleo_framework');?></button>
<?php do_action('fb_popup_button'); ?>
</div>
</form>
<div class="twelve columns"><hr>
<ul class="inline-list">
<li><small><a href="#" data-reveal-id="forgot_panel"><?php _e("FORGOT YOUR USERNAME OR PASSWORD?", 'kleo_framework');?></a></small></li>
</ul>
</div>
</div><!--end row-->
<a href="#" class="close-reveal-modal">×</a>
</div>