there you are ??
Now, here’s what I found, the javascript file of the plugin isn’t loading anywhere in the page. To see for yourself, go to the homepage, hit Ctrl + u
to view source, then do a find for tab.js
file.
If it’s there, it should show up somewhere in the <head>
like this: https://tinypic.com/r/zklah3/8
on your site, it’s not there.
assuming you didn’t dequeue the javascript file or something, the only thing I can think of that may be giving you trouble is somewhere in line #95 of the plugin file:
/* Load scripts and css */
if ( is_active_widget( false, false, $this->id_base ) ) {
add_action( 'wp_enqueue_scripts', array('Popular_Posts_Tabbed_Widget_Jetpack','enqueueAssets' ) );
//setup action to handle ajax call
add_action( 'wp_ajax_pptwj_tabwidget_list', array( 'Popular_Posts_Tabbed_Widget_Jetpack', 'ajaxProcessor') );
add_action( 'wp_ajax_nopriv_pptwj_tabwidget_list', array( 'Popular_Posts_Tabbed_Widget_Jetpack', 'ajaxProcessor' ) );
}
maybe it’s not falling through the call to is_active_widget()
or something. I dunno.
Also, I noticed the post-tiles plugin is also loading jquery 1.7.1 while wp is loading jquery 1.10.2
just saying..