Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @mertzsor

    You can modify the content of the email that is sent to the organizer. Try this snippet in your functions.php

    add_filter('tribe-ext-organizer-notifications-content', 'custom_tribe-ext-organizer-notifications-content');
    function custom_tribe-ext-organizer-notifications-content ( $output ){
    	// Modify $output with the desired content to be added to the email
    	$output = "There is a new attendee for your event!";
    
    	return $output;
    }

    If you want to stop this email form sending out altogether, simply disable the organizer notification plugin.

    Please let me know if this helps.

    Plugin Support Abz

    (@abzlevelup)

    Hi @mertzsor,

    We haven’t heard from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any more questions.

    Cheers,
    Abz

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘prevent organizer email with with link to attendee list’ is closed to new replies.