Viewing 1 replies (of 1 total)
  • Plugin Author Takanudo

    (@takanudo)

    I think the problem may be with likes anchor tag using “tooltip” as its class. I really regret that decision because it seems on conflict with everything else. I should have named it “fb_tooltip”. I’m guessing there is some javascript in your theme or another plugin that is removing anything with a tooltip class on mouse-out.

    Try making the following change to rename that class:

    1. Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-uki-facebook-wall-feed.php’
    2. Line 644 is the following:

      <a class="tooltip" title="' . $fb_likes . ' ' . __( 'people like this', JSL3_FWF_TEXT_DOMAIN ) . '" href="' . $like_link . '"' . $target . '>' . $fb_likes . '</a>';

    3. Change it to the following:

      <a class="fb_tooltip" title="' . $fb_likes . ' ' . __( 'people like this', JSL3_FWF_TEXT_DOMAIN ) . '" href="' . $like_link . '"' . $target . '>' . $fb_likes . '</a>';

    4. Save the file
    5. In the style sheet, on the settings page for the plugin, replace any “.tooltip” with “.fb_tooltip”
Viewing 1 replies (of 1 total)
  • The topic ‘Facebook likes-thumb disapears on mouse out in widget’ is closed to new replies.