I’ve not used that plugin, but if it allows you to get a specific integer or count, you can set up one of my progress bars and then use the tdd_pb_calculated_percentage
filter to adjust the value as described in the FAQ.
I don’t plan on integrating native support for other plugins.
<?php
add_filter( 'tdd_pb_calculated_percentage', 'change_percentage', 10, 2 );
function change_percentage($percentage, $id){
//Only apply to post (bar) ID 120, if it isn't 120, just return
if ($id != 120)
return $percentage;
$newpercentage = $percentage_calculated_from_plugin
return $newpercentage;
}
?>