Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save femiyb/d29dab5465b35fc9d2f25a9896343cbd to your computer and use it in GitHub Desktop.
Save femiyb/d29dab5465b35fc9d2f25a9896343cbd to your computer and use it in GitHub Desktop.
Change the word "Seat(s)" to "student(s)" for Paid Memberships Pro Sponsored Members Add On.
<?php
/**
* This will change all instances of seat(s) to student(s) for the Sponsored Members Add On - https://www.paidmembershipspro.com/add-ons/pmpro-sponsored-members/
* Add the code below to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_change_seat_to_student( $output_text, $input_text, $domain ) {
if ( 'pmpro-sponsored-members' === $domain ) {
$output_text = str_replace( 'seats', 'students', $output_text );
$output_text = str_replace( 'Seats', 'Students', $output_text );
$output_text = str_replace( 'seat', 'student', $output_text );
}
return $output_text;
}
add_filter( 'gettext', 'my_pmpro_change_seat_to_student', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment