jcorder02
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Manager] Download page not showing post contentI too am having the same issues with the most recent update (Version 6.0.3) My download page is blank when I am not logged into wordpress however when I am logged in I can see the downloads.
EDIT:
I just downgraded back to version 5.4.0 and it seems to be working again. Any help on this issue would be great.- This reply was modified 4 years, 11 months ago by jcorder02.
EDIT: So I found the answer I was looking for here
https://ww.wp.xz.cn/support/topic/exlude-a-page-from-private-website/Thank you for answering it here. Took me some time to find it but this was the solution.
I found this function and have tried to use “bp_is_current_component” and changed it out with “bp_is_register_page” but got an error. (code inserted below)
function members_is_private_page() {
$is_private = true;
if ( function_exists( ‘bp_is_current_component’ ) && ( bp_is_current_component( ‘register’ ) || bp_is_current_component( ‘activate’ ) ) )
$is_private = false;`
Any help would be greatly appreciated.
- This reply was modified 5 years ago by jcorder02.