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.