Viewing 15 replies - 1 through 15 (of 17 total)
  • Plugin Author kirilln

    (@kirilln)

    Hello,
    checked your site and see 2 javascript errors in your theme that seem to be blocking Tweet Blender execution. You can use FireFox with Firebug to check them out.

    Everything else seems to be set up and configured properly.

    Thread Starter Zemkad

    (@zemkad)

    Dear Kirill,

    Thank you for the suggestion. The problem is difficult to debug because it is related to the jQuery plugins.

    I have tried 2 configurations for my theme. First one:

    <?php
    wp_enqueue_script('jquery');
    wp_enqueue_script('cufon', get_stylesheet_directory_uri() . '/js/cufon.js');
    /*wp_enqueue_script('Myriad', get_stylesheet_directory_uri() . '/js/Myriad_Pro_700.font.js');*/
    wp_enqueue_script('Effects', get_stylesheet_directory_uri() .'/js/effects.js');
    wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.1.js');
    wp_enqueue_script('carousal', get_stylesheet_directory_uri() . '/js/jcarousel.js');
    ?>
    <?php
    	/* We add some JavaScript to pages with the comment form
    	 * to support sites with threaded comments (when in use).
    	 */
    	if ( is_singular() && get_option( 'thread_comments' ) )
    		wp_enqueue_script( 'comment-reply' );
    
    	/* Always have wp_head() just before the closing </head>
    	 * tag of your theme, or you will break many plugins, which
    	 * generally use this hook to add elements to <head> such
    	 * as styles, scripts, and meta tags.
    	 */
    	wp_head();
    ?>

    Slider works but Tweet Blender doesn’t. It needs manual updating.

    After the removal of this block your plugin works well while the slider on our page does not:

    <?php
    wp_enqueue_script('jquery');
    wp_enqueue_script('cufon', get_stylesheet_directory_uri() . '/js/cufon.js');
    /*wp_enqueue_script('Myriad', get_stylesheet_directory_uri() . '/js/Myriad_Pro_700.font.js');*/
    wp_enqueue_script('Effects', get_stylesheet_directory_uri() .'/js/effects.js');
    wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.1.js');
    wp_enqueue_script('carousal', get_stylesheet_directory_uri() . '/js/jcarousel.js');
    ?>

    I assume that your plugin uses the version of jQuery that is not provided by WordPress. Would it be possible to substitute the calls to those files for the “standard” wordpress functions?

    Basically, I do not know where to go from here because it seems to be the calls to the jQuery libraries that mess things up πŸ™

    Plugin Author kirilln

    (@kirilln)

    @Zemcad: Tweet Blender uses the version of jQuery that ships with WP. You’ll see the call to wp_enqueue_script('jquery'); in tweet-blender.php

    I’d help you figure this out but would need temp admin access and possibly FTP access. If you can provide that, just email details to tweetblender AT gmail DOT com and I’ll take a look at your theme.

    We’re also having issues with tweet blender not loading posts… oddly though it loads them first time around, then the only way it will load them again is if you deactivate the plugin – and activate it again. We were wondering if it might be a caching issue – we’ve bought the tweet caching plugin and have it running alongside W3 Total Cache

    Plugin Author kirilln

    (@kirilln)

    @kromedesign: what’s the url of the site? W3 Total Cache could definitely have something to do with it but I’d need to look at the site to see what’s up

    it’s http://www.cloudsoftcorp.com/category/blog/ – we’ve tried taking off W3 cache on their dev site but still seem to be having the issue. I’ve assumed when it says ‘once on load’ in the widget that should be every time the page loads it will try and refresh?

    oh – and thanks for looking πŸ™‚ !!!

    We’ve also tried saving out the cached tweets to a CSV and loading them into the dev site – but it jsut says all 13 record generated errors. The CSV looks fine in excel …

    Hello thx for the plugin, it’s all properly installed, works fine..
    But i have the same issue, If w3 total cache is on, it’s not loading tweets, when i disable w3 it all works fine, in the w3 total cache there is a rule for things not to cache “plugins”, but thats not working.

    Plugin Author kirilln

    (@kirilln)

    @kromedesign: sorry it took forever but I just looked at your site in FF and do see the recent tweets. As far as import errors, can you send me that CSV? I’d like to see what’s up. I’m at tweetblender AT gmail DOT com

    @pie123: what’s the url of your site?

    I’ll do some additional testing with W3 total cache before next release.

    A quick update this end – the plugin did seem to start working, which was great. However we think it may haveconflicted with W3 total cache – causing 500 errors on the server. So – we’ve had to remove it for now πŸ™ .. which stopped the 500 errors – a real shame as it’s a great plugin!!

    I just tested it..

    For me its only causing issues when you enable “minify” with js minify: in w3total cache

    You can set minify on enable, but manual, then the tab on top click minify and disable JS minify settings, does that work ?

    Ah – we’ll give that a go!

    Settings set – we’ll give that a little while and check for 500 errors and errors in the server log – fingers crossed, thanks for the heads up!

    Plugin Author kirilln

    (@kirilln)

    @pie123: thanks for the update. I think w3total cache is trying to minify my JS files which are already minified and that’s the root cause of this. I’ll dig more and v3.4.0 should work OK without conflicts

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘[Plugin: Tweet Blender] Tweet blender not loading tweets’ is closed to new replies.