autoship_product_schedule_options_select_skin
This filter allows you to add additional classes to the various html entities ( i.e. form labels, container, select drop down, etc.) for simple and variable products.
Example
// add dashed border and change the dropdown to black & white using CSS classes function new_skin($select_skin_arr){ $select_skin_arr['container'] .= ' transparant_container'; $select_skin_arr['select'] .= ' negative'; return $select_skin_arr; } add_filter('autoship_product_schedule_options_select_skin', 'new_skin', 10, 1);