The wwob_after_product_item_image filter allow you to add your custom data after each item image.
Example usage:
[enlighter lang=”php”]
add_filter( ‘wwob_after_product_item_image’, ‘do_something_after_item_image’, 2, 10 );
function do_something_after_item_image($form_id, $choice){
// Do something after item image
$output = “value”;
return $output;
}
[/enlighter]
Placement
This code should be placed in the functions.php file of your active theme.