WOOT! I finally solved this tonight!
The trick is to disable the library called “fastclick” from your wp-touch theme. I can’t seem to find anything that this affects in my theme, and it’s simply removed by commenting out the ‘fastclick’, line of your root-functions.php file in your wp-touch theme as follows:
// Add Foundation Module Support
function cms_theme_init() {
foundation_add_theme_support(
array(
'concat',
'advertising',
'custom-posts',
'custom-latest-posts',
// disabled for wp_postratings 'fastclick',
'featured',
'font-awesome',
'google-fonts',
'load-more',
'media',
'menu',
'sharing',
'social-links',
'spinjs',
'webapp'
)
);
You’ll need to clear any caches (i.e. wp-supercache, w3c, and wp-touch’s cache for this to take effect).
I’ll post back if I can find any consequences of disabling fastclick, but I can’t find any thusfar.