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: city, email This topic has 1 reply, 2 voices, and was last updated 1 year ago by Marcel Pol. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts 21 May 2022 at 17:35 #8005 Blythe JoslinParticipant 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! 23 May 2022 at 10:49 #8023 Marcel PolKeymaster 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 ); Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Warning: This form can only be used if JavaScript is enabled in your browser. Log In