BuddyBoss Home – Web › Support Forums › Plugins › BuddyBoss Media › Move Media Content above Text/Captions
Tagged: display photo above text
- This topic has 3 replies, 2 contibutors, and was last updated 9 years, 10 months ago by Alyssa.
Viewing 4 posts - 1 through 4 (of 4 total)
Question
January 10, 2015 at 4:16 pm #34607@socialhoodHello,
Awesome plugin! I do have a question on how to do something.
I want the media to be displayed above the text/post.
Currently when you upload a photo and write something the text gets displayed above the photo.
I would like to do the opposite and have the photo displayed above the text. How can I do this?
Thanks so much!
EricAnswers
January 10, 2015 at 5:29 pm #34610@alyssa-buddyboss
AlyssaParticipant@socialhood so this edit is NOT upgrade safe and unfortunately is not able to be safe.
In buddyboss-media/includes/types/photo-hooks.php:175 find this:if ( $full !== false && is_array( $full ) && count( $full ) > 2 ) { $content .= '<a class="buddyboss-media-photo-wrap" href="'.$full[0].'">'; $content .= '<img data-permalink="'. bp_get_activity_thread_permalink() .'" class="buddyboss-media-photo" src="'.$src.'"'.$width_markup.' ' . $alt . ' /></a>'; } else { $content .= '<img data-permalink="'. bp_get_activity_thread_permalink() .'" class="buddyboss-media-photo" src="'.$src.'"'.$width_markup.' ' . $alt .' />'; }
replace with this:
if ( $full !== false && is_array( $full ) && count( $full ) > 2 ) { $pre_content = '<a class="buddyboss-media-photo-wrap" href="'.$full[0].'">'; $pre_content .= '<img data-permalink="'. bp_get_activity_thread_permalink() .'" class="buddyboss-media-photo" src="'.$src.'"'.$width_markup.' ' . $alt . ' /></a>'; } else { $pre_content .= '<img data-permalink="'. bp_get_activity_thread_permalink() .'" class="buddyboss-media-photo" src="'.$src.'"'.$width_markup.' ' . $alt .' />'; } $content = $pre_content . $content;
January 10, 2015 at 6:36 pm #34612@socialhoodAWESOME! Thanks, this worked perfectly.
January 11, 2015 at 9:49 am #34620@alyssa-buddyboss
AlyssaParticipantTook me a minute to figure out since I’m not the dev 🙂
Viewing 4 posts - 1 through 4 (of 4 total)
- The question ‘Move Media Content above Text/Captions’ is closed to new replies.