1. Home
  2. Docs
  3. WooCommerce Order Builder
  4. Actions and Filters
  5. wwob_after_products

wwob_after_products

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.