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

wwob_after_extra_options

The wwob_after_extra_options action fires the extra options accordions.

Example usage:

[enlighter lang=”php”]
add_action( ‘wwob_after_extra_options’, ‘add_something_after_options’, 2, 10 );
function add_something_after_options($products, $id){
// Do something before extra options
}
[/enlighter]

Placement

This code should be placed in the functions.php file of your active theme.