Un usuario pregunt贸 馃憞
Muy bueno c贸mo agregar mi ID de usuario de referencia
Este tema fue modificado hace 1 a帽o, 5 meses por.
(@heateor)
Hace 1 a帽o, 5 meses
Hola,
Si est谩 hablando de myCRED Redirection Id, puede agregar myCRED redirect ID al final de la URL compartida, desde 3rd Party Integration
art铆culo por p谩gina de opciones de plugins en admin. Si desea adjuntar alguna otra identificaci贸n de redireccionamiento, puede usar el siguiente c贸digo:
/**
* Append referral ID at the end of url being shared
*/
function heateor_sss_append_referral_id( $post_url, $sharing_type, $standard_widget ) {
$referral_id = "REFERRAL_ID";
$connector = strpos( urldecode( $post_url ), '?' ) === false ? '?' : '&';
$post_url .= $connector . 'ref=' . $referral_id;
return $post_url;
}
add_filter( 'heateor_sss_target_share_url_filter', 'heateor_sss_append_referral_id', 10, 3 );
El ID de referencia que desea agregar al final de una URL es 芦REFERRAL_ID禄 en el c贸digo anterior.
(@mkkhan)
Hace 1 a帽o, 5 meses
Gracias por tu respuesta, No, estoy buscando afiliados
(@heateor)
Hace 1 a帽o, 5 meses
De nada.
驴Solucion贸 tu problema??
0 / 0