-
Anve S. replied to the question Change Register/Login Overlays Transparency in the forum OneSocial theme 8 years, 10 months ago
HI @rotju,
Try applying following css in child theme custom css
body .mfp-bg {
background: rgba(255, 255, 255, 1) none repeat scroll 0 0!important;
}
Regard
Anve -
zabrina started the question multisite media activity in the forum BuddyBoss Media 10 years ago
I have multisite. I am not having the issues @rotju is having. All buttons/uploads seem to work. My issue is with the activity after uploading. When I upload a pic to the main or even on a subsite. The picture does not show up on the other subsite just the comments that were made when uploading the pic.
-
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 3 months ago
As you can see in my last comment I made the featured image work on activity page.
But the code @rotju found in the buddypress forum ends with this part:
add_action('bp_activity_excerpt_append_text', 'icondeposit_bp_activity_entry_meta');
which makes all the excerpt look like this […] and be unclickable – no link. If you are…[Read more]
-
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 3 months ago
As you can see in my last comment I made the featured image – post work on activity page.
But the code @rotju found in the buddypress forum end with this part:
add_action('bp_activity_excerpt_append_text', 'icondeposit_bp_activity_entry_meta');
which makes all the excerpt look like this … and be unclickable – no link. If you are…[Read more]
-
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 3 months ago
Hi @rotju,
I figured it out.
last step, add this code to custom.css
#buddypress div.activity-comments div.acomment-content img {
display: none;
}so just to recap the steps:
1. add the function to display the featured image inside the post to content.php
<?php if ( has_post_thumbnail() ) : ?>
[Read more]
<a class="entry-post-thumbnail" href="<?php… -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 3 months ago
Hi @rotju,
I figured it out.
last step, add this code to custom.css
#buddypress div.activity-comments div.acomment-content img {
display: none;
}so just to recap the steps:
1. add the function to display the featured image inside the post to content.php
<?php if ( has_post_thumbnail() ) : ?>
[Read more]
<a class="entry-post-thumbnail" href="<?php… -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 3 months ago
Hi @rotju,
I figured it out.
last step, add this code to custom.css
#buddypress div.activity-comments div.acomment-content img {
display: none;
}so just to recap the steps:
1. add the function to display the featured image inside the post to content.php
<?php if ( has_post_thumbnail() ) : ?>
[Read more]
<a class="entry-post-thumbnail" href="<?php… -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 4 months ago
Hi @rotju, I did this first –
https://www.buddyboss.com/support-forums/topic/plugin-conflict-featured-image
Since featured images are not naturally embedded within the posts in Buddyboss. Ypu need to add code to make them display, and then the activity will catch them.
why don’t you try that and come back to me, it’s easier to figure this out together. -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 4 months ago
Hi @rotju, I did this first –
https://www.buddyboss.com/support-forums/topic/plugin-conflict-featured-image/since featured images are not naturally embedded within the posts in Buddyboss. Ypu need to add code to make them display, and then the activity will catch them.
why don’t you try that and come back to me, it’s easier to figure this out together. -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 4 months ago
ok, problem partially solved with the help of TJ.
adding this to custom.css
.activity-list .activity-content img.thumbnail {display:none;}
leaves only the featured images on the activity feed.cool.
but the feature image still displays in all of the comments on the post activity. (photo attached)
What do you think that is?
@tjchester, @angslyc…[Read more] -
Milena replied to the question Activity Wall – Show Featured image like Facebook in the forum Requests and Feedback 10 years, 4 months ago
Hi @rotju,
I tried adding this code to my child theme functions php, and I get a weird combo of featured image, underneath it – the post’s embedded image and what is the most interesting is that the featured image is added to every comment one makes on that activity. (see attached image. p.s. site is rtl)
Did you have a similar experience, and…[Read more]