whitelist URI that is used with domain mapping plugin
-
hello
it’s so great to have this plugin, i’m so thankful that you provided such a great plugin.
i had problem with whitelisting the domain i’m using with domain mapping plugin that provides me the ability to redirect a domain to a specific post/page in my site
i used the code you provided here within the support topic
i tried even to add the domain itself to the exclusion
// whitelist URL function my_forcelogin_whitelist( $whitelist ) { $whitelist[] = home_url( '/shop/' ); $whitelist[] = home_url( '/support/' ); $whitelist[] = home_url( '/zaggelapp/' ); $whitelist[] = home_url( 'https://zaggelapp.com' ); $whitelist[] = home_url( 'https://zaggelapp.com/zaggelapp' ); return $whitelist; } add_filter( 'v_forcelogin_whitelist', 'my_forcelogin_whitelist' );
so what to do in this case since when i want to show this page without it being hidden at all
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘whitelist URI that is used with domain mapping plugin’ is closed to new replies.