The wwob_before_products action fires after the products.
Example usage:
[enlighter lang=”php”]
add_action( ‘wwob_after_products’, ‘do_something_after_products’, 2, 10 );
function do_something_after_products($products, $id){
// Do something after products load
}
[/enlighter]
Placement
This code should be placed in the functions.php file of your active theme.