- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的一个使用 WooCommerce 订阅插件的 WooCommerce 网站有问题。
问题是一种产品仅在特定日期每 2 周发货一次。
下一个发货日期是 11 月 9 日。
我需要弄清楚如何将此添加为产品的默认开始日期。
我尝试使用 WooCommerce 订阅插件的 WC_Subscriptions_Synchroniser 类中描述的功能。
我启用了同步续订功能。
并且由于 11 月 9 日是星期五,还将同步续订日期更改为每周的星期五。
但是,这使得第一个续订日期为 11 月 2 日,也就是即将到来的星期五。
我想弄清楚如何将开始日期延迟到 11 月 9 日,而不是现在显示的 11 月 2 日。
感谢任何建议。
最佳答案
同样的问题。我设法准备了一个 future 的开始日期,但对此有一个硬编码限制。
查看 wcs_function.php 中的这段代码
// validate the start_date field
if ( ! is_string( $args['start_date'] ) || false === wcs_is_datetime_mysql_format( $args['start_date'] ) ) {
return new WP_Error( 'woocommerce_subscription_invalid_start_date_format', _x( 'Invalid date. The date must be a string and of the format: "Y-m-d H:i:s".', 'Error message while creating a subscription', 'woocommerce-subscriptions' ) );
} else if ( wcs_date_to_time( $args['start_date'] ) > current_time( 'timestamp', true ) ) {
return new WP_Error( 'woocommerce_subscription_invalid_start_date', _x( 'Subscription start date must be before current day.', 'Error message while creating a subscription', 'woocommerce-subscriptions' ) );
}
以后不可能创建订阅。这可能与订阅插件限制有关,或者订阅问题的方法非常狭窄。
这意味着即使像我一样通过 woocommerce_add_cart_item_data
、wcs_recurring_cart_start_date
、woocommerce_get_item_data
处理购物车项目属性,您最终也会碰壁。 您要么需要更改 Woocommerce 订阅硬限制,要么非常有创意。
现在,我将向您展示我涉及的 3 个操作/过滤器,这很简单。我已经简化了这些内容,因为它涉及您可能不需要的日期验证和格式设置。
您的产品页面中需要一个 my_delay_post_attr
POST 字段。
首先将您在产品页面上添加的一些自定义字段保存到购物车项目中。
add_filter('woocommerce_add_cart_item_data', 'my_woocommerce_add_cart_item_data', 10, 1);
/**
* Read a Y-m-d H:i:s formatted (mysql) date from POST data
* then store it in the cart item.
* @param $cart_item_data array
*/
function my_woocommerce_add_cart_item_data($cart_item_data)
{
if (@$_POST['my_delay_post_attr']) {
$cart_item_data['my_delay_post_attr'] = $_POST['my_delay_post_attr'];
}
return $cart_item_data;
}
现在,让我们在购物车 -> 订购步骤中更改开始日期:
add_filter('wcs_recurring_cart_start_date', 'my_wcs_recurring_cart_start_date', 10, 2);
/**
* @param string $date
* @param \WC_Cart $recurring_cart
*
* @return mixed
*/
function my_wcs_recurring_cart_start_date($date, $recurring_cart) {
$cartContents = $recurring_cart->cart_contents;
if (!$cartContents) {
return $date;
}
if (!count($cartContents)) {
return $date;
}
$key = array_keys($cartContents)[0];
// I'd suggest you not to trust this, and apply some verification here
return @$cartContents[$key]['my_delay_post_attr];
}
最后在购物车页面显示此信息:
add_filter( 'woocommerce_get_item_data', 'my_woocommerce_get_item_data', 10, 2 );
public static function my_woocommerce_get_item_data( $item_data, $cart_item ) {
if (!@$cart_item['my_delay_post_attr']) {
return $item_data;
}
$item_data[] = array(
'key' => 'Start of the subscription',
'value' => $cart_item['my_delay_post_attr'],
'display' => '',
);
return $item_data;
}
编辑:我已经获得 Prospress 支持,这就是他们对 future 订阅的硬性限制的回答:
I understand you're trying to manually create a subscription and are asking about the limitation around the start date needing to be in the future. This limitation is there to support the gateways, as some are very specific and rigid around the timing of subscriptions. You may be safe to create a workaround for that check, but we can't make any promises - the check is there for a reason. If you are insistent on removing it, please run thorough testing on a development environment first to ensure there are no issues with your gateway.
编辑2:
我可以确认 PAYPAL 无法使用此技巧。至于 Prospress 的回应:
We are unsure how Stripe and Mercanet would handle this change. (We do know for sure that PayPal Standard, for example, would not handle this well.)
If you decide to move forward with this, we recommend testing very thoroughly. However, I wonder if there is a more simple option to accomplish what you are trying to achieve? Do you need the actual creation date to be in the future, or do you just need the first payment to be in the future?
If the latter, rather than trying to change date_created, you might consider using a free trial or creating a false free trial. This is the functionality used for subscription synchronization. Also, we recently separated out date_created and start_date in the database. While this functionality isn't fully developed yet, it might give you another point to work with as you move forward with your customization.
关于php - 在添加到购物车之前更改 WooCommerce 订阅产品开始日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53033282/
[编辑:在 functions.php 中添加代码并省略代码 WC 文件中的更改时,它实际上起作用了。重要提示:它仅在 ONE 属性存在时有效。但是,当有 2 个属性(例如尺寸和颜色)时,它就不起作用
我使用以下方法获取购物车中产品的版本ID。 $cartdetails = $woocommerce->cart->get_cart(); foreach($cartdetails as $ca
我目前使用 $order = new WC_Order($order_id); $order->update_status('completed', 'Order has been delivered
您好,我无法从 woocommerce 订单送货地址获取,我收到错误: fatal error :在 .. 中的非对象上调用成员函数 get_formatted_address() 我正在使用代码:
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
是否可以使产品变化来改变价格? 例如,我有一个基本产品及其变体: 数量 -10 -20 -50 颜色 - 蓝色 -红色 项目 -是的 -没有 我有数量的价格,不管是什么颜色。但是,如果您选择“项目-否
有没有办法将其他收件人添加到 woocommerce 发票邮件中。我尝试使用“woocommerce_email_headers” Hook ,但它不起作用: add_filter( 'woocomm
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
只是想看看是否有办法为我的送货选项添加工具提示或弹出窗口,以便在客户悬停或点击(通过移动设备)时更详细地向客户解释此选项的含义? 最佳答案 简单的解决方案是通过将以下内容添加到您的 functions
如何获取 woocommerce 中的类别列表?使用这段代码,我得到了 wordpress 类别列表: function gaga_lite_category_lists(){ $catego
我一直试图在 WooCommerce 上禁用产品价格四舍五入,但没有成功。即使我在 WooCommerce > Settings > General > Number of decimals 上将 d
我一直在尝试定制 woocommerce 中的相关产品。我使用 woocommerce_output_related_products_args 添加 meta_query 选项,但它们没有效果,这是
由于 WooCommerce 2.1 页面(例如订单接收)已被删除并替换为 WC 端点。我的结帐页面有一个自定义页面模板 (page-checkout.php),现在所有结帐端点也都在使用这个自定义页
我正在向 WooCommerce 的结帐页面添加额外的字段, 我已经添加了基本的文本字段,但我想要一个带有几个选项的下拉列表或选择框, 这是我到目前为止所做的,但我在某处犯了错误 $fields['b
我试图在我的 invoice.php 中拼出 WooCommerce 订单总额模板文件可以达到订单总金额。 首先我试过: $total = $order->get_total(); - format
我需要在购物车页面和结帐页面中显示的价格(小计、总计...)后添加文字提及。 我知道如何在单个页面和商店页面上执行此操作,但不知道如何在其他页面上执行此操作。我唯一找到的就是这段代码,但它不起作用。
在 Woocommerce 中,在管理产品列表中,我应该需要为特定属性过滤产品。 根据“Add a filter dropdown for product tags in woocommerce ad
Woocommerce 有一个带有“woocommerce”类的 div 我想添加另一个类或删除该类。那是哪个文件? 最佳答案 虽然 WooCommerce 没有提供任何支持的方法来实现这一点
您好,目前我想获取 woocommerce 中的税率名称。我有什么办法可以得到这张图中圈出的值:/image/pyGAH.png 我当前的代码: $items = $order->get_items(
在 Woocommerce 中,我尝试显示可变产品的销售日期。 我找到了a code ,如果我将此代码准确地发布在functions.php中,它不会执行任何操作。我尝试修改它,因为我只需要在起始页上
我是一名优秀的程序员,十分优秀!