Image thumbnail

Is there a setting somewhere that I can change to make the preview image on post not be cropped, but add white border instead?

My users would just like to see the full image in the timeline so they don't have to click on anything. 

our site will be powered mostly by image sharing.

Thanks.

Example:

image_transcoder.php?o=bx_froala_image&h=754&dpx=2&t=1545776908Timeline Cropped image

image_transcoder.php?o=bx_froala_image&h=755&dpx=2&t=1545776949Actual Image

  • 598
  • More
Replies (4)
    • You can try to change it in the DB:

      UPDATE  `sys_transcoder_filters` SET  `filter_params` =  'a:2:{s:1:"w";s:3:"600";s:1:"h";s:3:"600";}' WHERE  `sys_transcoder_filters`.`transcoder_object` =  'bx_timeline_photos_medium' AND  `sys_transcoder_filters`.`filter` =  'Resize' AND `sys_transcoder_filters`.`filter_params` =  'a:3:{s:1:"w";s:3:"600";s:1:"h";s:3:"600";s:13:"square_resize";s:1:"1";}' LIMIT 1;
      
      UPDATE  `sys_transcoder_filters` SET  `filter_params` =  'a:2:{s:1:"w";s:3:"100";s:1:"h";s:3:"100";}' WHERE  `sys_transcoder_filters`.`transcoder_object` =  'bx_timeline_photos_preview' AND  `sys_transcoder_filters`.`filter` =  'Resize' AND `sys_transcoder_filters`.`filter_params` =  'a:3:{s:1:"w";s:3:"100";s:1:"h";s:3:"100";s:13:"square_resize";s:1:"1";}' LIMIT 1;
      
      UPDATE  `sys_transcoder_filters` SET  `filter_params` =  'a:2:{s:1:"w";s:3:"300";s:1:"h";s:3:"300";}' WHERE  `sys_transcoder_filters`.`transcoder_object` =  'bx_timeline_photos_view' AND  `sys_transcoder_filters`.`filter` =  'Resize' AND `sys_transcoder_filters`.`filter_params` =  'a:3:{s:1:"w";s:3:"300";s:1:"h";s:3:"300";s:13:"square_resize";s:1:"1";}' LIMIT 1;

      Clear DB cache after this modification.

      But it maybe some negative effect in the design, so some CSS fixes will be needed.

      • I was going to look into this today and noticed a problem with Una.  check out how your post is formatted.

        I can actually select the text and copy it, but thought you should know it looks bad.

        Thanks.

        100% zoom
        image_transcoder.php?o=bx_froala_image&h=1051&dpx=2&t=1552335118

        50% zoom

        image_transcoder.php?o=bx_froala_image&h=1052&dpx=2&t=1552335156

          • Alex T⚜️ would you please make this change for me?  Thanks.

            Login or Join to comment.