Micah Wood
- Profile
- Topics Started
- Replies
Profile
Display name Micah Wood Website Bio Member since December 10, 2021 Topics posted 1 Replies 1 Topics Started
-
Subscribers images not displaying
December 22, 2021
-
Replies
-
I was able to resolve the issue. There were a couple of things that were going on. This is a multisite, so filtered HTML works a bit differently. By default, WordPress contributors and subscribers don't get the `upload_files` capability. WordPress was stripping out the image HTML in comments. I resolved the issue by: Installing the Members plugin Updating the contributor and subscriber roles to have the `upload_files` capability. Adding the following code to allow images in comments: ```php <?php add_filter( 'preprocess_comment', function ( $data ) { global $allowedtags; $allowedtags['img'] = array( 'class' => array(), 'src' => array(), 'alt' => array(), 'width' => array(), 'height' => array(), ); return $data; }, 9 );
January 1, 2022
-