BuddyBoss Home – Web Support Forums Plugins BuddyBoss Media Move Media Content above Text/Captions

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #34607
    @socialhood

    Hello,

    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!
    Eric

    Answers

    #34610

    Alyssa
    Participant
    @alyssa-buddyboss

    @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;
    #34612
    @socialhood

    AWESOME! Thanks, this worked perfectly.

    #34620

    Alyssa
    Participant
    @alyssa-buddyboss

    Took 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.