Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mehul0810/ade87cee49aa3df7668744decf3d9cdc to your computer and use it in GitHub Desktop.
Save mehul0810/ade87cee49aa3df7668744decf3d9cdc to your computer and use it in GitHub Desktop.
<?php
function mg_update_remark( $remark, $formId ) {
// Do whatever you like to update the remark text.
$remark = 'This is my remark'; // This is just an example how to update remark text.
return $remark;
}
add_filter( 'mggi88_update_remark_text', 'mg_update_remark', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment