• Resolved facundolpf

    (@facundolpf)


    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://www.ads-software.com/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 to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter facundolpf

    (@facundolpf)

    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

    (@facundolpf)

    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

    (@numeeja)

    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

    (@facundolpf)

    Solved! Many Thanks @numeeja !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error using Flow Flow social stream plugin’ is closed to new replies.