Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created July 11, 2015 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/7c41922b0ee833c66cc5 to your computer and use it in GitHub Desktop.
Save JudeRosario/7c41922b0ee833c66cc5 to your computer and use it in GitHub Desktop.
Pro Sites Quick Fix
add_filter('prosites_pricing_labels', 'custom_lables');
function custom_lables ($labels) {
$labels['monthly_alt'] = "Try it out! You can easily upgrade to a better value plan at any time." ;
return $labels ;
}
@JudeRosario
Copy link
Author

Just copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment