Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I found the issue within the code of this plugin, which is basically that if you have an image that is (for example) taller than it is wide and it is followed by an image that is wider than it is tall, it is still using the calculated resized width of the first image on the second one instead of using the maximum width that the newly recalculated height is based on. In other words, it doesn’t reset/set the variable when it should.

    Another way to fix it would be to make sure that your uploaded images all fit within the dimensions that you specify, and then it would never try to resize them at all.

    In kind of a hackish way of doing it, if you’re interested in editing the template for your page, you can call the button output directly in php code using the code
    <?php print async_share_social_box(); ?>
    Of course, this will cause it to display on the page twice, but you can hide one of them with css if you wish.

Viewing 2 replies - 1 through 2 (of 2 total)