• Hello! Is it possible to include page URL into email notification?

    It would be nice not having to get into admin panel to see where does feedback come from.

Viewing 1 replies (of 1 total)
  • Thread Starter arseni

    (@arseni)

    Just realized, that it’s a pretty simple fix.
    Usernoise actually has nice filters, that we can use w/o modifying plugin itself. Thanks Guys!

    add_filter( 'un_feedback_received_message', 'my_filter', 999 ,3 );
    //Make sure you call add_filter and request 3 params to be accepted
    
    function my_filter($message, $id, $params) {
    	return $message."\n\r"."Page URL: ".$params['referer'];
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Include page URL in email notification’ is closed to new replies.