static function show_order_form($atts)
 {
     ob_start();
     wpbc_order_form::order_form_body_content($atts);
     $output = ob_get_contents();
     ob_end_clean();
     return $output;
 }