-
Robert replied to the question Remove "New" button from Admin Bar in the forum BuddyBoss theme 10 years, 5 months ago
That removes the new post option in the menu, but how would I remove the whole button altogether? (or just hide it)
🙂
-
Robert started the question Remove "New" button from Admin Bar in the forum BuddyBoss theme 10 years, 5 months ago
How do I remove the admin button that contains the options to post a new post or media?
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
The Learn More button on the image slider disappears on mobile devices.
This is how to make it appear (thanks to @tjchester) (just put the below code into your child CSS):
#fwslider .readmore{display:block !important;}
However, that piece of code makes the button appear, but the button is a bit big for some screen like the iPhone. Below is how…[Read more]
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
Perfect!
Thankyou!!
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
FYI – that sidebar works perfectly for a logged in user. It’s only logged out that there is a problem.
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
Done! Thanks. 🙂
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
@tjchester – Thanks, that has fixed the button issue!
However, the left sidebar doesn’t actually show anything when I open it in the mobile version. Here is what I mean:
http://screencast.com/t/aOufhKWjCBY
Any help much appreciated!
-
Robert replied to the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
The register and login items also seem to disappear.
-
Robert started the question Content Slider "Learn More" button in the forum BuddyBoss theme 10 years, 6 months ago
Guys, the Learn More button on my content slider seems to disappear on mobile.
Where would I start to figure this one out?
I would like it to display on mobile.
Notes:
Buddypress 4.0.2 with Child theme 3.2.0
I also hide the slides from my logged-in users as per this post:…[Read more]
-
Robert started the question Buttons for Logged Out Users in the forum BuddyBoss theme 10 years, 6 months ago
How did you put these buttons here?
I want a similar thing for logged-out users. The buttons that inherit the styling of the wordpress bar.
-
Robert started the question Footer Area in the forum BuddyBoss 3.0 10 years, 7 months ago
In the footer area, where the widgets appear in Footer 1, 2, 3, 4 and 5, how would I get a widget to appear horizontally across the whole lot?
I want the “who’s online” widget to show a list of online members horizontally.
-
Robert started the question Post Validation Issue in Forums in the forum BuddyBoss 3.0 10 years, 7 months ago
If I submit a post without adding a title the page reloads and I end up at the top of the page but my post doesn’t show, if I scroll down I see a validation message that I didn’t add a title, either the page should not reload so I can see the validation message or the page reload should drop me back to the location of the validation error.
🙂
-
Robert replied to the question Squashed Images in Forum in the forum BuddyBoss 3.0 10 years, 7 months ago
I think its cos the flickr embed code defines the hight and width of the image in the html?
-
Robert replied to the question Squashed Images in Forum in the forum BuddyBoss 3.0 10 years, 7 months ago
Ok, looks like I solved this.
A friend of mine put this javascript in the footer (after copying it to the child theme).
<script type="text/javascript">
var image = $('.bbp-reply-content img');
image.attr('height', 'auto');
</script> -
Robert replied to the question Squashed Images in Forum in the forum BuddyBoss 3.0 10 years, 7 months ago
Ahh, it was an image embedded from another site (flickr)
Not sure a fix is possible.
-
Robert started the question Squashed Images in Forum in the forum BuddyBoss 3.0 10 years, 7 months ago
Guys, my forums are responsive which is great.
But images posted there get squashed.
Is there any way to automatically assign a
max-width: 100%; height: auto;
to the CSS of any images shared in the forum?
Here is what I mean: http://screencast.com/t/dSZQGVf58
-
Robert replied to the question Hide Slides for Logged in Users in the forum BuddyBoss 3.0 10 years, 7 months ago
Excellent – thanks for the quick response!
That almost worked! I just had to add a ! before the is_user_logged_in so that the correct code is:
<?php if(!is_user_logged_in()) get_template_part( 'content', 'slides' ); ?>
Thanks again!
-
Robert started the question Hide Slides for Logged in Users in the forum BuddyBoss 3.0 10 years, 7 months ago
I am using the “front page” template for a page (which is my front page).
I am using the slides to draw people to sign up.
How do I hide the slides from logged-in users?