recoverybee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Private Website–how to make two pages visible with not logged inI finally found a solution. As I said, I’m terrible with coding so this was probably super simple for a lot of you. After a ton of research and remembering that I had the same function added to my parent theme, I first had to activate my parent theme and remove the function, and then add array( [additional pages] ) to the code, so the new code looks like this:
add_action( 'template_redirect', function() { if( ( !is_page( array( 'new-home', 'register') ) ) ) { if (!is_user_logged_in() ) { wp_redirect( site_url( 'register' ) ); // redirect all... exit(); } } });
Added in case anyone else has the same issue and needs a solution. For someone with zero coding knowledge or experience, I’m pretty proud of myself for figuring this out on my own, with the help of multiple different codes throughout these forums to get an idea of what I needed to do lol.
Forum: Fixing WordPress
In reply to: Private Website–how to make two pages visible with not logged inThank you, I’m using Buddypress and Youzer. It’s a small community and I can’t afford to pay for all the extras that other membership plugins charge for. Hopefully in the future as we expand.
Forum: Plugins
In reply to: [ImbaChat] Video & Voice Chat Not Working/Creating dialogs on other pagesYou guys are amazing and continue to impress me. Thank you so much! Yes, I’m still in the process of launching and one month is right on the mark for when I expect to be fully ready. I can’t wait to see it in action!
Forum: Plugins
In reply to: [ImbaChat] Creating Chat GroupsIt works! Thank you so much!! Wonderful work!
Forum: Plugins
In reply to: [ImbaChat] Creating Chat GroupsI’m so sorry – I don’t see any additional group chats. Still only members. I tried creating a new group to see if it would pop up in my chat and still nothing. Is there an extra step I need to take?
Thank you so much, I’m sorry to be a pain. If I figure it out on my end I will let you know.
Forum: Plugins
In reply to: [ImbaChat] Creating Chat GroupsThat will be perfect, thank you so much! Wonderful news–I’m consistently impressed.
Forum: Plugins
In reply to: [ImbaChat] Creating Chat GroupsYes I have user groups on buddy press I would like to add live chats to them so members of the groups can instant message each other.
I would also like the ability to create groups from the chat if possible, from the chat box create group and add users. That is more so what I’m looking for. Please let me know if this is possible. Thanks so much.
Groups are located https://www.recoverybees.com/groups
Forum: Plugins
In reply to: [Theme My Login] Error with Shortcode – Register/Login on Same Page[facepalm] On a whim I changed my page settings. I had login and register both set to the same page in theme my login settings–changed the “login” page to “login” and now it works.
I guess I’ll leave this up in case anyone else doesn’t think to check their settings.