- This topic has 3 replies, 3 contibutors, and was last updated 9 years, 6 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Question
Answers
Viewing 4 posts - 1 through 4 (of 4 total)
- The question ‘Video Size’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Video Size
I don’t know if this has been mentioned, but is there a way to make the videos i post smaller?
when i post a link from youtube or any video it’s FULL SIZE on the page. I don’t want thumbnails but just the regular normal like 640×480 or even a little smaller. I just seek a simple solution, I am using Boss theme.
Thank you for your time.
Andrew
@andrew – this is confirmed to be fixed in the next release. You can read more about it here https://www.buddyboss.com/support-forums/topic/embedded-videos-are-massive-in-the-activity-stream/
Thank You
Hi @sauntvalerian @digital-porch , as a temp fix you can add this in functions.php with your desired width and height
`add_filter( ’embed_defaults’, ‘modify_embed_defaults’ );
function modify_embed_defaults() {
return array(
‘width’ => 530,
‘height’ => 375
);
}`
Regards
Varun Dubey