bbPress Plugin Browser »

Allow Images (0.9)

Download

Version: 0.9

Other Versions

Last Updated: 2009-10-24

Requires bbPress Version: 0.8.4 or higher

Compatible up to: 1.0.2

Author Homepage »

Plugin Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(47)

Your Rating

Authors mdawaffe, qayqay12

Tags: ,

  1. Tomcraft1980: Are you sure you have the latest version of Allow Images installed?

    Posted: 2 years ago #
  2. Tomcraft1980

    Member

    Well, the latest release version 0.9. Can you give me a link to a newer version?

    Kind regards

    Tom

    Posted: 2 years ago #
  3. The solution to FAQ2 should be #thread .post img {max-width:450px;} :-)

    Posted: 2 years ago #
  4. great plugin!
    Does something like this also excist for movies?

    Posted: 2 years ago #
  5. Works like a charm on 1.0.2 :)

    What would also be great is the ability to allow the html5 <video> tag. I tried something like this -

    function allow_video_allowed_tags( $tags ) {
    $tags['video'] = array('src' => array(), 'title' => array(), 'alt' => array());
    return $tags;
    }
    add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags', 'allow_video_allowed_tags' );

    but it did not work... sigh :)

    Posted: 2 years ago #
  6. jjwinter-

    your html5 video edit should work but you need to make sure the tag attributes are supported.

    on the second line of the code you mentioned, where it says array - the 'src', 'title' and 'alt' refer to the allowed attributes for the img tag.
    For the video tag, you need to change it to support the relevant video attributes, something like :

    $tags['video'] = array('src' => array(), 'controls' => array(), 'height' => array(), 'width' => array());

    etc, etc. I haven't tested it but for more info on what you would need to use, check here: http://www.w3schools.com/html5/tag_video.asp

    Posted: 2 years ago #
  7. Thanks so much!

    Posted: 2 years ago #
  8. Thanks

    Posted: 1 year ago #
  9. uzun zamandır aradığımdı.

    Posted: 1 year ago #
  10. Thanks for this.

    Posted: 1 year ago #
  11. Worked perfectly for me thanks!

    Posted: 1 year ago #
  12. thanks u.

    Posted: 1 year ago #
  13. Took a while, but I finally got it to work!

    Posted: 1 year ago #
  14. retteketet

    Member

    Can someone please help me where to put the code to max the size of the images? Can't get it to work :(

    Posted: 1 year ago #
  15. Can they add images also to their comments?

    Posted: 7 months ago #
  16. would help i think

    Posted: 6 months ago #
  17. Nice. Thanks a lot!

    Posted: 3 months ago #
  18. nice plugin.. thanks

    Posted: 3 months ago #

RSS feed for this topic

Add a Comment

You must log in to post.