If you want below each product for jigoshop plugin then do modification in plugin library.php file and then make change in below code
function print_check() {
if(is_single() && get_post_type() == “post”) {
return $this->options[‘social_on_posts’];
}
}
in place of get_post_type() == “post” to get_post_type() == “product”
then it works.