Si desea sustituir la plantilla de la página principal de inicio de sesión por una que ofrezca un enlace de registro, copie y pegue el código siguiente en un bloque HTML personalizado del editor de WordPress.
In the example code provided below, the result is that the text “Not Yet a Member? Sign Up Here – we won’t bite :)” appearing underneath the login form with the ‘Sign Up Here’ text linking to a purchase of product ID 1. The messaging text and the link that it goes to should be amended to suit your needs. The goal is to allow potential new members a simple pathway to sign up from your login page.
[MM_Member_Decision isMember='true']
Ya has iniciado sesión. ¿Necesitas desconectarte? Puedes hacerlo <a href="/es/[MM_CorePage_Link type='logout']/" title="Cerrar sesión">aquí</a>.
[/MM_Member_Decision]
[MM_Member_Decision isMember='false']
<p>¿Aún no es miembro? <a href="/es/[MM_Purchase_Link productId='1']/">Inscríbete aquí</a> - no mordemos :)</p></br>
[MM_Form type='login']
<div class="mm-login">
[MM_Form_Message type='error']
[MM_Form_Message type='éxito']
<h3>Introduzca su nombre de usuario y contraseña</h3>
<table>
<tr>
<td class="mm-label-column">
<span class='mm-label'>Nombre de usuario</span>
</td>
<td class="mm-field-column">
[MM_Form_Field name='nombre_de_usuario']
</td>
</tr>
<tr>
<td class="mm-label-column">
<span class='mm-label'>Contraseña</span>
</td>
<td class="mm-field-column">
[MM_Form_Field name='contraseña']
</td>
</tr>
<tr>
<td class="mm-label-column"></td>
<td class="mm-field-column">
[MM_Form_Button type='iniciar sesión' label='Iniciar sesión']
<label for="rememberme" class="mm-remember-me"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever">
Acuérdate de mí</label>
</td>
</tr>
<tr>
<td class="mm-label-column"></td>
<td class="mm-field-column">
<a href="/es/[MM_CorePage_Link type='forgotPassword']/" class="mm-forgot-password">Contraseña olvidada</a>
</td>
</tr>
</table>
</div>
[/MM_Formulario]
[/MM_Decisión_socio]
Para incluir el enlace de registro correcto, asegúrese de editar el atributo href en la siguiente línea de código:
<p>¿Aún no es miembro? <a href="/es/[MM_Purchase_Link productId='1']/">Inscríbete aquí</a> - no mordemos :)</p>

