Woocommerce预订的可用性检查脚本

时间:2018-10-25 09:43:10

标签: woocommerce woocommerce-bookings

我需要一个简短的函数,它将在自定义单个产品页面中执行以下操作:

“立即预订”按钮的编程方式如下:(示例值)

 <form method="post" action="add-to-cart-url">
     <input type="hidden" name="add-to-cart" value="415"> <!--this is a product ID-->
     <input type="hidden" name="wc_bookings_field_start_date_year" value="2018">
     <input type="hidden" name="wc_bookings_field_start_date_month" value="10">
     <input type="hidden" name="wc_bookings_field_start_date_day" value="30">
     <input type="hidden" name="wc_bookings_field_resource" value="29"> <!--this is a resource ID-->
     <input type="hidden" name="wc_bookings_field_start_date_time" id="wc_bookings_field_start_date" value="10:00">
     <button type="submit">BOOK NOW</button>
 </form>

如何做到这一点:

  • 如果可以使用上述表格预订的产品,请显示该表格
  • 如果以上表格预订的产品不可用或购物车中没有->打印一些文字

我从哪里开始?

0 个答案:

没有答案