Last active
May 6, 2024 08:54
-
-
Save LaxusCroco/57c38ba38d62a71023c36f5c48c364d5 to your computer and use it in GitHub Desktop.
Revisions
-
LaxusCroco revised this gist
May 6, 2024 . 1 changed file with 8 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,20 @@ <?php add_filter( 'jet-form-builder/send-email/message_content', function ( string $content ) { return str_replace( '%client_ip%', \Jet_Form_Builder\Classes\Http\Http_Tools::get_ip_address(), $content ); } ); -
LaxusCroco created this gist
May 6, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ <?php add_filter( 'jet-form-builder/send-email/message_content', function ( string $content ) { return str_replace( '%client_ip%', \Jet_Form_Builder\Classes\Http\Http_Tools::get_ip_address(), $content ); } );