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