-
E replied to the question Site Logo on SSL Register page in the forum BuddyBoss 3.0 9 years, 12 months ago
Apologies for the delayed reply. Thank you very much for the assistance. You may close this.
-
E replied to the question Site Logo on SSL Register page in the forum BuddyBoss 3.0 10 years ago
@tjchester unless I’ve missed something, that snippet of code you referred me to appears to pertain only to a “Custom Login Logo” used on the Login page. (See attached screenshot.) The logo image I’m referring to is the one displayed on all the page headers.
Does line 964 also pertain to the logo image used in the page headers?
-
E started the question Site Logo on SSL Register page in the forum BuddyBoss 3.0 10 years ago
I’ve implemented SSL on the Login and Register pages. I’m using BB version 3.2.0 on the site.
The problem I discovered is that on the Registration page, the custom logo located in the header is not coming across as an ‘https’ image source reference like I need it to be on that secure Registration page.
Can you please tell me where and what code…[Read more]
-
E replied to the question Unable to select "gallery" as photo upload source on Android in the forum BuddyBoss 3.0 10 years ago
@tjchester thank you! I had the user try selecting documents, and then they were able to see the gallery/photos option. So simple! If I had an Android, I would have tried that myself to troubleshoot in the first place (iPhone user here, though).
Glad to hear that this is NOT a real issue at all. Thanks again!
-
E started the question Unable to select "gallery" as photo upload source on Android in the forum BuddyBoss 3.0 10 years ago
I realize BuddyBoss has evolved to version 4, but I’ve got a site that’s still running 3.2.0 (by choice for various reasons). And I’m hoping you guys can provide a relatively simple fix for a problem recently discovered.
A new user recently notified me that they are not able to upload a photo because they do not even see an option on their Galaxy…[Read more]
-
E replied to the question How to get deleted photo to reappear on user's photo page? in the forum BuddyBoss 3.0 10 years, 6 months ago
Resolved! You may close this thread.
I just discovered that the ‘wp_bp_activity_meta’ table needed to have some rows added back also.
-
E replied to the question How to get deleted photo to reappear on user's photo page? in the forum BuddyBoss 3.0 10 years, 6 months ago
And FWIW, his displayed photo count is showing one less than it should be. So that leads me to believe that perhaps some other database table (besides wp_bp_activity) needs to be manually updated in order to get the photo and the proper count displayed again?
-
E started the question How to get deleted photo to reappear on user's photo page? in the forum BuddyBoss 3.0 10 years, 6 months ago
It’s a mystery as to how it happened, but a friend of mine told me that one of his uploaded images was no longer appearing on his Photos page or Wall. He claims he didn’t delete it.
I checked a backup database and found that the wp_bp_activity table contains a row (id 214) that is missing from my production website’s database. So apparently,…[Read more]
-
E replied to the question IE 9 anomaly in the forum BuddyBoss theme 10 years, 6 months ago
@sashanet this is the same issue I had reported back in May. I resolved the issue by modifying the code in my header.php file that I’ve placed in my child theme (since I already have some custom changes made to my header.php file).
I guess the BuddyBoss team never resolved this issue in their own header.php, as this website shows the same issue…[Read more]
-
E replied to the question Changing Font Awesome Icon in the forum BuddyBoss 3.0 10 years, 6 months ago
@tjchester OK, thank you for the follow-up.
-
E replied to the question Changing Font Awesome Icon in the forum BuddyBoss 3.0 10 years, 6 months ago
@tjchester, interestingly the one you had me try does display properly. This is strange… while I do see a reference to an “alias” for that one, there’s also a corresponding icon image with the exact same unicode (but without the word “alias” listed next to it).
The one that I originally provided a reference to in my question (f1ba) also has a…[Read more]
-
E started the question Changing Font Awesome Icon in the forum BuddyBoss 3.0 10 years, 6 months ago
When I use CSS to change one of the Profile page icons (for mobile view) using one of the selections found in the Font Awesome 4.1.0 list (here), why is that some of the images I select from that Font Awesome list get rendered as just a square box instead of the actual image that should be displayed inside the icon?
Is there some special syntax I…[Read more]
-
E replied to the question login link in header in the forum BuddyBoss 3.0 10 years, 7 months ago
@tjchester that snippet of CSS code is exactly what I needed. It saved me sooo much time with my trial and error trying to get this right. Thank you… very much appreciated!!!
-
E replied to the question login link in header in the forum BuddyBoss 3.0 10 years, 7 months ago
@tjchester if it’s not too much trouble, would you be so kind as to provide the snippet of CSS code that you guys use on your demo site for the placement of the Login and Buy Now buttons?
I’ve gotten my Login and Register buttons placed in the exact same spot using CSS, but can’t figure out how to keep those buttons from moving to the right when…[Read more]
-
E replied to the question login link in header in the forum BuddyBoss 3.0 10 years, 7 months ago
@tjchester thank you very much for the guidance on that. Worked like a charm!
-
E replied to the question login link in header in the forum BuddyBoss 3.0 10 years, 7 months ago
Thanks to the help of this thread, I was able to successfully add Login, Logout, and Register buttons to the far right side my header, which is something I’ve been wanting for a while. But when I view my site’s nav menu on my mobile phone, I see the actual buttons that I had created for the header. (See attached photo.) Obviously those buttons…[Read more]
-
E replied to the question BP Profile Search Mobile View in the forum BuddyBoss 3.0 10 years, 7 months ago
Happy to help. 🙂
-
E replied to the question BP Profile Search Mobile View in the forum BuddyBoss 3.0 10 years, 7 months ago
@companionmayhem I discovered the same type of issue a couple of months ago. Check out the following thread for a solution…
https://www.buddyboss.com/support-forums/topic/drop-down-list-field-title-not-displaying-on-mobile/
-
E replied to the question Slider not showing in the forum BuddyBoss 3.0 10 years, 7 months ago
@tjchester One slight modification to your code snippet was needed for me to get it to work. I had to add a ! before the is_user_logged_in part. So here’s the revised code that worked for me…
<?php if( bp_is_current_component( 'activity' ) && !bp_is_member() && !is_user_logged_in() ){ get_template_part( 'content', 'slides' );} ?>
Thanks…[Read more]
-
E replied to the question Slider not showing in the forum BuddyBoss 3.0 10 years, 7 months ago
@tjchester I have a follow-up question…
Now that I’ve got this working, can you please advise how I would go about hiding the sliders for logged in users (as I do not want the sliders to be displayed to logged in users)?
I tried your guidance provided in the thread Hide Slides for Logged in Users, but that didn’t work. I’m guessing that’s…[Read more]
- Load More