sarah51
Forum Replies Created
-
Forum: Plugins
In reply to: [Strong Testimonials] Columns inside of testimonials?Hi,
Thanks for getting back to me, I do have the Pro version. Where would I go to execute this?
Gotcha, I added that to my functions.php file and don’t see any changes, but I will wait a while and see if that helps. Thanks for all of your help!
Sweet! Where do I add that line?
Ah for some reason I think that made an infite loop on my site. I actually used a redirection plugin to achieve this now.
Now, the only thing that would be nice is to have some messaging when users are in the middle of being approved.
Hi,
I added that code to the functions.php file but not sure why it’s not working. I added:
/** * Sets up the ability for 3rd parties to do their own redirect based on their own conditions. * * @since 4.3.0 * * @param array $value Array with keys for whether to redirect and where. */ $custom_redirect = (array) apply_filters( 'bprwg_custom_redirect', array( 'redirect' => 'false', 'url' => '' ) ); function sarah_bpro_redirect( $redirect_args ) { $redirect_args['redirect'] = true; $redirect_args['url'] = 'https://poweredbyproshop.com/login/'; return $redirect_args; } add_filter( 'bprwg_custom_redirect', 'sarah_bpro_redirect' );So there is a way it could work? I tried with a redirection plugin but I think your plugin overrode it
I am not seeing that. Just goes to profile section. You can try to register and login in if you want, I won’t approve you so that you can see what happens. https://poweredbyproshop.com/register/
Then try to go to the forum
https://poweredbyproshop.com/forum
Also, is there a way to redirect logged out users who try to go to the forum to the login page?