• Hi, while checking out some error logs today, we discovered an error in the code of the sharify-style.php file. Lines 19-26 were:

    else{
    $twitter_btn_size = ‘20%’;
    $twitter_btn_icon_float = ‘left;’;
    $facebook_btn_icon_align = ”;
    $twitter_btn_title = ”;
    $twitter_btn_icon_count = ‘block;’;
    $twitter_btn_icon_padding = ’10px;’;
    }

    As you can see line 22 reads ‘facebook’ instead of twitter. So we changed it to

    else{
    $twitter_btn_size = ‘20%’;
    $twitter_btn_icon_float = ‘left;’;
    $twitter_btn_icon_align = ”;
    $twitter_btn_title = ”;
    $twitter_btn_icon_count = ‘block;’;
    $twitter_btn_icon_padding = ’10px;’;
    }

    and that resolved the error.

    Otherwise a very nice plugin, thanks!

    • This topic was modified 8 years, 1 month ago by cmerrick.
  • The topic ‘Error on line 22 of sharify-style.php’ is closed to new replies.