How can I have ALL the form info sent to me?

Home Forums Guestbook Add-On How can I have ALL the form info sent to me?

Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #8005
    Blythe Joslin
    Participant

    I’ve installed the guestbook, and it’s working fine, but the emails sent out do not show city, or IP address. How can I get those showing in the email sent to the admin about a new post?
    Thank you!

    #8023
    Marcel Pol
    Keymaster

    Hi Blythe,

    This PHP code should do that.
    You can add it to the functions.php of your theme, preferably a child theme.

    function my_gwolle_gb_mail_moderators_body( $body, $entry ) {
    
    	$body .= '
    
    City: ' . $entry->get_author_origin() . '
    IP address: ' . $entry->get_author_ip();
    
    	return $body;
    
    }
    add_filter( 'gwolle_gb_mail_moderators_body', 'my_gwolle_gb_mail_moderators_body', 10 ,2 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.