• Resolved mrdew54

    (@mrdew54)


    hi, very nice plug-in,
    i’m lookin for subscribe my wordpress users to different mailing lists depending on their user roles.. please can you give me some idea, or some code line?
    Thank you, dew.

    Ciao, bellissimo plug-in, sto cercando un modo per iscrivere i miei utenti wordpress a delle mailing list automaticamente a seconda del loro ruolo. Puoi darmi qualche ide o pezzo di codice? Grazie mille, dew.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author eventualo

    (@eventualo)

    Hi, I haven’t tried the following code but is should work…

    1. First, you have to create the mailing lists in dashboard:
      go in Newsletters → Settings → tab Mailing lists and create the mailing lists, one for role, with availability Admin side only: write down the list IDs
    2. then, create a php file in wp-content/mu-plugins folder and paste the following code: of course, you have to adjust the list IDs according to your real lists:

    (In Italian):
    Ciao, non ho provato il codice ma dovrebbe funzionare…

    1. Primo, devi creare le liste nella dashboard: in Newsletters → Impostazioni → tab Mailing lists e crea le liste, una per ogni ruolo, con visibilità Solo parte amministrativa: prendi nota degli ID delle liste
    2. poi, crea un file php nella cartella wp-content/mu-plugins e incola il seguente codice: ovviamente devi inserire gli ID delle liste:
    
    function custom_easymail_list_by_role( $subscriber, $user_id = false ) {
    	if ( $user_id ) {
    		$user = get_userdata( $user_id );
    		switch ( $user->roles[0] ) {
    			case 'administrator':
    				$list_id = 1; // <-
    				break;
    			case 'editor':
    				$list_id = 2; // <-
    				break;
    			case 'author':
    				$list_id = 3; // <-
    				break;
    			case 'contributor':
    				$list_id = 4; // <-
    				break;
    			default:
    			case 'subscriber':
    				$list_id = 5; // <-
    		}
    		alo_em_add_subscriber_to_list( $subscriber->ID, $list_id );
    	}
    }
    
    add_action( "alo_easymail_new_subscriber_added", "custom_easymail_list_by_role", 10, 2 );
    
    Thread Starter mrdew54

    (@mrdew54)

    Grazie mille della pronta risposta, il file dentro wp-content/mu-plugins deve avere un nome specifico?

    Plugin Author eventualo

    (@eventualo)

    Ciao, no, un qualsiasi nome purché .php

    Thread Starter mrdew54

    (@mrdew54)

    OK! Funziona egregiamente! Ti ringrazio un sacco.
    Un’ultima cosa.. Sono ancora nuovo in quanto action hooks..
    Quando richiami l’hook “alo_easymail_new_subscriber_added”,
    dove “vive”? nel senso: esiste da qualche parte una linea di codice che
    lo crea? Sto studiando per creare i miei custom hook ma non ho ancora capito bene..
    Ringraziando ancora.. dew

    Plugin Author eventualo

    (@eventualo)

    Esatto, nel codice c’è un do_action('alo_easymail_new_subscriber_added', ...) che esegue tutti gli add_action( 'alo_easymail_new_subscriber_added', ... ) collegati.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘mailing lists depending on user roles’ is closed to new replies.