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