Skip to content

Instantly share code, notes, and snippets.

@vovafeldman
Last active October 17, 2018 10:49
Show Gist options
  • Save vovafeldman/0a7db0a2865ce44a1f770dd7c05bf0ee to your computer and use it in GitHub Desktop.
Save vovafeldman/0a7db0a2865ce44a1f770dd7c05bf0ee to your computer and use it in GitHub Desktop.
Freemius - Customizing the support forum URL for the premium code version
<?php
function my_premium_support_forum_url( $wp_org_support_forum_url ) {
return 'https://my-awesome-site.com/forum/';
}
if ( my_fs()->is_premium() ) {
my_fs()->add_filter( 'support_forum_url', 'my_premium_support_forum_url' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment