Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gppa-lmt-extract-first-character.php: Added new snippet. #898

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions gp-populate-anything/gppa-lmt-extract-first-character.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
/**
* Gravity Perks // Populate Anything // Extract First Character From Live Merge Tag
* https://gravitywiz.com/documentation/gravity-forms-populate-anything/
*
* Extract the first character of a string using when a Live Merge Tag.
* This is useful when you need the first letter of a name, for example.
*/
// Update "123" to your form ID; and "4" to the field ID you are copying from.
add_filter( 'gppa_live_merge_tag_value_123_4', function( $value ) {
return substr( $value, 0, 1 );
} );
Loading