Hello
I had Woopress top bar REGISTER button, but now it is lost. I maybe wanted to close it at first (dunno how I might do it), but now I don’t see the possibility where to open this function again.
I located this code in /htdocs/wp-content/themes/woopress/framework/theme-functions.php:
<?php if(!empty($reg_id)): ?>
<li class="register-link">
<a>"><?php _e( 'Register', ETHEME_DOMAIN ); ?></a>
<?php if($popups) : ?>
<div class="register-popup">
<div class="popup-title">
<span><?php _e( 'Register Form', ETHEME_DOMAIN ); ?></span>
</div>
<?php et_register_form(); ?>
</div>
<?php endif; ?>
</li>
<?php endif; ?>
If i remove the<?php if(!empty($reg_id)): ?>statement, the Register button appears. But adding a new account won’t work! Please help.