我正在使用 WordPress 3.9.1 和最新版本的 WooCommerce (2.1.10),我正在尝试创建一个“支付发票”页面,人们在其中输入发票编号和金额,然后直接进入结帐页面。
我现在这样做的方式:
我有一个页面,其中包含人们输入金额的表格:
<form action="#" onsubmit="location.href = 'http://protexfs.co/invoicepage/?date=' + this.elements.date.value; return false;">
<input type="text" name="date">
<input type="submit" value="Go">
</form>
提交按钮指向一个页面,该页面自动生成相同数量的 Woocommerce 产品并将其添加到购物车并自动重定向到结帐页面(我使用 Insert PHP 插件来满足我所有的 PHP 需求):
[insert_php]
//empty cart
global $woocommerce;
$woocommerce->cart->empty_cart();
// Remove default cart message
$woocommerce->clear_messages();
//price
$invoiceprice = filter_input(INPUT_GET,"date",FILTER_SANITIZE_STRING);
//Generate title
$timestampedtitle = "Date: ".date("d/m/Y")." Amount: £".$invoiceprice;
//Generate message
$message = date_timestamp_get(date_create())." Date: ".date('m/d/Y h:i:s a', time())." Invoice amount: £".$invoiceprice;
$post = array(
'post_author' => '2',
'post_status' => "publish",
'post_title' => $timestampedtitle,
'post_content' => $message,
'post_parent' => '',
'post_type' => "product",
//'post_status' => 'private',
);
//Create post
$post_id = wp_insert_post( $post, $wp_error );
if($post_id){
$attach_id = get_post_meta($product->parent_id, "_thumbnail_id", true);
add_post_meta($post_id, '_thumbnail_id', $attach_id);
}
wp_set_object_terms($post_id, 'simple', 'product_type');
update_post_meta( $post_id, '_visibility', 'search' );
update_post_meta( $post_id, '_stock_status', 'instock');
update_post_meta( $post_id, '_virtual', 'yes');
update_post_meta( $post_id, '_regular_price', $invoiceprice );
update_post_meta( $post_id, '_sale_price', $invoiceprice );
update_post_meta( $post_id, '_purchase_note', "" );
update_post_meta( $post_id, '_featured', "no" );
update_post_meta( $post_id, '_weight', "" );
update_post_meta( $post_id, '_length', "" );
update_post_meta( $post_id, '_width', "" );
update_post_meta( $post_id, '_height', "" );
update_post_meta($post_id, '_sku', "");
update_post_meta( $post_id, '_product_attributes', array());
update_post_meta( $post_id, '_sale_price_dates_from', "" );
update_post_meta( $post_id, '_sale_price_dates_to', "" );
update_post_meta( $post_id, '_price', $invoiceprice );
update_post_meta( $post_id, '_sold_individually', "" );
update_post_meta( $post_id, '_manage_stock', "no" );
update_post_meta( $post_id, '_backorders', "no" );
update_post_meta( $post_id, '_stock', "" );
update_post_meta( $post_id, '_et_pb_page_layout', 'et_full_width_page' );
if( $woocommerce->cart ) {
$woocommerce->cart->add_to_cart( $post_id, $quantity=1 );}
$url = $woocommerce->cart->get_checkout_url();
header("Location: $url");
[/insert_php]
只要我登录,这似乎就可以完美运行。但是,如果用户未登录,产品仍会生成但无法添加到购物车,显示以下消息:“对不起,该产品不能买了。” (这破坏了整个事情)。
奇怪的是,客人可以访问我通过 WooCommerce 界面创建的任何其他产品(因此,如果我有一个公开可用的产品并且我以编程方式更改其价格并将其添加到购物车,它可以工作 -> 但这会产生问题当 2 个人同时点击按钮时)。
在你问之前,我已经在 WooCommerce 设置中启用了访客结账。
有想法该怎么解决这个吗?(或者可能是一种完全不同的方式来实现我的目标?)
弗拉德