Para cambiar automáticamente a los usuarios a una suscripción gratuita cuando su cuenta caduque o se cancele, debe utilizar el sistema de notificaciones push para llamar a un script personalizado que actualizaría la cuenta del afiliado para que estuviera activa en una afiliación gratuita.
MemberMouse utiliza Función cron integrada en WordPress to check two times a day for any accounts that should be expired. WordPress' cron is triggered by traffic coming to the site so if you have minimal traffic coming to the site, the period of time in between when it's executed may be less frequent than two times per day. Any activity on the site will trigger the cron to run, so if you have minimal traffic and notice it hasn't run, simply visit any page on your site to initiate it.
Aquí tienes un script de ejemplo que puedes utilizar como punto de partida:
<?php
// ===> TODO make sure this script is placed in the same directory as wp-load.php or if you put it somewhere else
// make sure to update the paths below
require_once("wp-load.php");
require_once("wp-content/plugins/membermouse/includes/mm-constants.php");
require_once("wp-content/plugins/membermouse/includes/init.php");
// ================= START CUSTOMIZATION ====================================
// If you need help finding your API URL, key or secret, read this article:
// http://support.membermouse.com/support/solutions/articles/9000020340-api-credentials-overview
// Your API URL
$apiUrl = "http://yourdomain.com/wp-content/plugins/membermouse/api/request.php";
// Your API key
$apiKey = "abc123def456";
// Your API secret
$apiSecret = "abc123def456";
// If you need help finding the membership level ID, read this article:
// http://support.membermouse.com/support/solutions/articles/9000020396-finding-ids-for-membership-levels-products-and-bundles
// The ID of the free membership level to switch the member to
$freeMembershipLevelId = 1;
// ================= END CUSTOMIZATION ======================================
// ==========================================================================
if(!isset($_GET["member_id"]) || empty($_GET["member_id"]))
{
exit;
}
$memberId = $_GET["member_id"];
$inputParams = "apikey={$apiKey}&apisecret={$apiSecret}&";
$inputParams .= "member_id={$memberId}&";
$inputParams .= "status=1&";
$inputParams .= "membership_level_id={$freeMembershipLevelId}&";
$apiCallUrl = "{$apiUrl}?q=/updateMember";
$ch = curl_init($apiCallUrl);
// ================= User Agent Header
$headers = array(
'Referrer: ' . site_url(),
'User-Agent: ' . MM_CURL_USER_AGENT,
);
// ================= End User Agent Header
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $inputParams);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
echo "<pre>".print_r($result, true)."</pre>";
?>
Este script cambiará el nivel de afiliación de los miembros al indicado en el script y establecerá su estado en "Activo". Para que el script funcione, debe proporcionar la información de su API y el ID del nivel de afiliación adecuado. Encontrará instrucciones adicionales en los comentarios del script.
NOTA: Este script está dirigido a personas con experiencia en desarrollo. El equipo de atención al cliente de MemberMouse no puede proporcionar ninguna ayuda en relación con la interpretación o el uso de este script.
After you modified the script as needed, download it and save it. In this example, we suggest to save it under the name: free-member-downgrade.php
Next, upload it to your server within the public_html.
A continuación crear una notificación push que se activa en el Cambios en la condición de miembro evento. Si desea que se produzca cuando caduque la afiliación, elija "Caducado" en el campo Cuando el estado de afiliación... menú desplegable.
La configuración sería más o menos así:
NOTA: Si desea que esto ocurra cuando se cancele la afiliación, seleccione "Cancelada" en el campo Cuando el estado de afiliación... menú desplegable.
Debería realizar algunas pruebas para asegurarse de que todo funciona correctamente. Para ello, tendrás que utilizar una cuenta de prueba para recrear la situación en la que la cuenta caduca o se cancela. Si todo está configurado correctamente, la cuenta de prueba permanecerá activa en un nivel de afiliación gratuito.