Title: Error using Flow Flow social stream plugin
Last modified: November 30, 2020

---

# Error using Flow Flow social stream plugin

 *  Resolved [facundolpf](https://wordpress.org/support/users/facundolpf/)
 * (@facundolpf)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/)
 * Hi,
    We are using flow-flow which is a social stream plugin.
 * The plugin works perfect in standalone pages on wordpress.
 * However when we insert the plugin shortcode into a tab of a page using “tabby
   responsive tabs” the feed stops working well.
 * We have read about a similar problem with galleries and “tabby responsive tabs”
   in this post: [https://wordpress.org/support/topic/loading-gallery-in-tabby-responsive-tabs/](https://wordpress.org/support/topic/loading-gallery-in-tabby-responsive-tabs/).
   but the solutions proposed there (css and javascript) are not working.
 * Could you give us an idea about how to solve it?
 * Thanks
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ferror-using-flow-flow-social-stream-plugin%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Thread Starter [facundolpf](https://wordpress.org/support/users/facundolpf/)
 * (@facundolpf)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/#post-13726620)
 * In addition to the previous information, the shortcode works well in the first
   tab… the problem appear when we use it in the other tabs.
 * Thanks
 *  Thread Starter [facundolpf](https://wordpress.org/support/users/facundolpf/)
 * (@facundolpf)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/#post-13726835)
 * We have found another strange behaviour: being on the tab with problems if we
   resize the browser window the feed appears instantly.
 * Thanks
 *  Plugin Author [cubecolour](https://wordpress.org/support/users/numeeja/)
 * (@numeeja)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/#post-13727140)
 * I have a possible fix for this kind of issue. If you would like to try it, make
   a new directory inside your wp-content/plugins folder called `tabby-embed-fix`
   and create a file inside that called `tabby-embed-fix.php` with the following
   content:
 *     ```
       <?php
       /*
       Plugin Name: Tabby Embed Fix
       Description: Helper plugin to enable embedded content to be shown in tabs when it is not visible on initial page load.
       Author: Michael Atkins
       Version: 1.0.0
       Author URI: https://cubecolour.co.uk/
       */
   
       if ( ! defined( 'ABSPATH' ) ) exit;
   
       function cc_tabbyembedfix() {
   
       	?>
       	<script>
       		jQuery(function($) {
       			$("body").on("click", ".responsive-tabs__list__item,.responsive-tabs__heading,.tabbylink", function() {
       				setTimeout(function(){
       					$(window).trigger("resize");
       				},500);
           		});
       		});
       	</script>
       	<?php
   
       }
       add_action('wp_footer', 'cc_tabbyembedfix');
       ```
   
 * Active the new plugin and test to investigate whether it fixes the issue.
 *  Thread Starter [facundolpf](https://wordpress.org/support/users/facundolpf/)
 * (@facundolpf)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/#post-13727249)
 * Solved! Many Thanks [@numeeja](https://wordpress.org/support/users/numeeja/) !

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

The topic ‘Error using Flow Flow social stream plugin’ is closed to new replies.

 * ![](https://ps.w.org/tabby-responsive-tabs/assets/icon-256x256.jpg?rev=2682041)
 * [Tabby Responsive Tabs](https://wordpress.org/plugins/tabby-responsive-tabs/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tabby-responsive-tabs/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tabby-responsive-tabs/)
 * [Active Topics](https://wordpress.org/support/plugin/tabby-responsive-tabs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tabby-responsive-tabs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tabby-responsive-tabs/reviews/)

## Tags

 * [flow flow](https://wordpress.org/support/topic-tag/flow-flow/)
 * [galleries](https://wordpress.org/support/topic-tag/galleries/)

 * 4 replies
 * 2 participants
 * Last reply from: [facundolpf](https://wordpress.org/support/users/facundolpf/)
 * Last activity: [5 years, 6 months ago](https://wordpress.org/support/topic/error-using-flow-flow-social-stream-plugin/#post-13727249)
 * Status: resolved