Last active
October 17, 2018 10:49
-
-
Save vovafeldman/0a7db0a2865ce44a1f770dd7c05bf0ee to your computer and use it in GitHub Desktop.
Freemius - Customizing the support forum URL for the premium code version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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