- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 WooCommerce 中实现以下目标。我想为特定产品设置最小订购量。
问题是,例如,该产品是可变产品,我想将最小数量设置为 12 件,但我希望将最小数量设置为整个产品,而不是每个变体。
例如:
// Set minimum quantity per product before checking out
add_action( 'woocommerce_check_cart_items', 'spyr_set_min_qty_per_product' );
function spyr_set_min_qty_per_product() {
// Only run in the Cart or Checkout pages
if( is_cart() || is_checkout() ) {
global $woocommerce;
// Product Id and Min. Quantities per Product
$product_min_qty = array(
array( 'id' => 9059, 'min' => 12 ),
);
// Will increment
$i = 0;
// Will hold information about products that have not
// met the minimum order quantity
$bad_products = array();
// Loop through the products in the Cart
foreach( $woocommerce->cart->cart_contents as $product_in_cart ) {
// Loop through our minimum order quantities per product
foreach( $product_min_qty as $product_to_test ) {
// If we can match the product ID to the ID set on the minimum required array
if( $product_to_test['id'] == $product_in_cart['product_id'] ) {
// If the quantity required is less than than the quantity in the cart now
if( $product_in_cart['quantity'] < $product_to_test['min'] ) {
// Get the product ID
$bad_products[$i]['id'] = $product_in_cart['product_id'];
// Get the Product quantity already in the cart for this product
$bad_products[$i]['in_cart'] = $product_in_cart['quantity'];
// Get the minimum required for this product
$bad_products[$i]['min_req'] = $product_to_test['min'];
}
}
}
// Increment $i
$i++;
}
// Time to build our error message to inform the customer
// About the minimum quantity per order.
if( is_array( $bad_products) && count( $bad_products ) > 0 ) {
// Lets begin building our message
$message = '<strong>A minimum quantity per product has not been met.</strong><br />';
foreach( $bad_products as $bad_product ) {
// Append to the current message
$message .= get_the_title( $bad_product['id'] ) .' requires a minimum quantity of '
. $bad_product['min_req']
.'. You currently have: '. $bad_product['in_cart'] .'.<br />';
}
wc_add_notice( $message, 'error' );
}
}
}
最佳答案
为了保持动态,您可以使用以下代码将自定义字段添加到产品数据元框(简单和可变产品)中的库存选项卡。
这样您就不必对产品 ID 进行硬编码
// Add custom field to the inventory tab in the product data meta box
function action_woocommerce_product_options_stock_status() {
woocommerce_wp_text_input(
array(
'id' => '_min_qty',
'placeholder' => __( 'My placeholder', 'woocommerce' ),
'label' => __( 'My label', 'woocommerce' ),
'desc_tip' => true,
'description' => __( 'My description', 'woocommerce' ),
'type' => 'number',
'custom_attributes' => array(
'step' => 'any',
),
)
);
}
add_action( 'woocommerce_product_options_stock_status', 'action_woocommerce_product_options_stock_status', 10, 0 );
// Save custom field
function action_woocommerce_admin_process_product_object( $product ) {
// Isset
if ( isset( $_POST['_min_qty'] ) ) {
// Update
$product->update_meta_data( '_min_qty', sanitize_text_field( $_POST['_min_qty'] ) );
}
}
add_action( 'woocommerce_admin_process_product_object', 'action_woocommerce_admin_process_product_object', 10, 1 );
function get_cart_quantity_variable_product( $child_ids ) {
// Get cart items quantities
$cart_item_quantities = WC()->cart->get_cart_item_quantities();
// Counter
$qty = 0;
// Loop through the childIDs
foreach ( $child_ids as $child_id ) {
// Checks if the given key or index exists in the array
if ( array_key_exists( $child_id, $cart_item_quantities ) ) {
// Addition
$qty += $cart_item_quantities[$child_id];
}
}
return $qty;
}
function action_woocommerce_check_cart_items() {
// Will increment
$i = 0;
// Will hold information about products that have not met the minimum order quantity
$bad_products = array();
// Will hold information about which product ID has already been checked so that this does not happen twice (especially applies to products with variants)
$already_checked = array();
// Loop through cart items
foreach( WC()->cart->get_cart() as $cart_item ) {
// Get IDs
$product_id = $cart_item['product_id'];
$variation_id = $cart_item['variation_id'];
// NOT in array, already checked? Continue
if ( ! in_array( $product_id, $already_checked ) ) {
// Push to array
$already_checked[] = $product_id;
// Get the parent variable product for product variation items
$product = $variation_id > 0 ? wc_get_product( $product_id ) : $cart_item['data'];
// Get meta
$min_qty = $product->get_meta( '_min_qty', true );
// NOT empty & minimum quantity is greater than or equal to 2 (1 never needs to be checked)
if ( ! empty( $min_qty ) && $min_qty >= 2 ) {
// Get current quantity in cart
$cart_qty = $cart_item['quantity'];
// Product type = variable & cart quantity is less than the minimum quantity
if ( $product->get_type() == 'variable' && ( $cart_qty < $min_qty ) ) {
// Get childIDs in an array
$child_ids = $product->get_children();
// Call function, get total quantity in cart for a variable product
$cart_qty = get_cart_quantity_variable_product( $child_ids );
}
// Cart quantity is less than the minimum quantity
if ( $cart_qty < $min_qty ) {
// The product ID
$bad_products[$i]['product_id'] = $product_id;
// The variation ID (optional)
//$bad_products[$i]['variation_id'] = $variation_id;
// The Product quantity already in the cart for this product
$bad_products[$i]['in_cart'] = $cart_qty;
// Get the minimum required for this product
$bad_products[$i]['min_req'] = $min_qty;
// Increment $i
$i++;
}
}
}
}
// Time to build our error message to inform the customer, about the minimum quantity per order.
if ( is_array( $bad_products) && count( $bad_products ) > 0 ) {
// Clear all other notices
wc_clear_notices();
foreach( $bad_products as $bad_product ) {
// Displaying an error notice
wc_add_notice( sprintf(
__( '%s requires a minimum quantity of %d. You currently have %d in cart', 'woocommerce' ),
get_the_title( $bad_product['product_id'] ),
$bad_product['min_req'],
$bad_product['in_cart'],
), 'error' );
}
// Optional: remove proceed to checkout button
remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 );
}
}
add_action( 'woocommerce_check_cart_items' , 'action_woocommerce_check_cart_items', 10, 0 );
关于php - 强制特定产品的最低订购量,包括 WooCommerce 购物车页面上的变体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67615959/
我们都在流行的网站上看到,购物车图标的右上角有一个小图标!我必须在我的 ASP .NET 网页中使用类似的东西。 如何让这个图标位于购物车图标的右上角.. 购物车的图标是一个普通的 bootstrap
Closed. This question does not meet Stack Overflow guidelines 。它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 Stack Ov
可以使用 REST 架构约束来实现购物车吗? 我想把我的问题集中在 session 状态上。在实现购物车的典型 MVC 应用程序中,很可能 session 对象将在 session 中管理,购物车作为
我的网上商店使用自己的模板,但在我的网站上我使用货币欧元而不是美元。哪里可以编辑啊。 http://i50.tinypic.com/67rvhc.png 最佳答案 进入系统>配置。 然后在“通用”>“
我想在我的门户中使用购物车。我可以获得 jquery 的购物车插件吗? 格纳尼亚尔·祖贝尔 最佳答案 http://simplecartjs.com/不是 JQuery,但如果 PayPal 或 Go
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我正在尝试将产品添加到我的购物车。 我收到一条错误消息: 警告:为 foreach() 提供的参数无效 它告诉我以下代码出现错误: function isInCart($id) { if (!empt
我目前正在使用 PHP 开发购物车,我正在尝试弄清楚如何使用我编写的代码将商品添加到购物车本身。我的数据库中的项目显示正确,但只有 $item 下的最后一个数组被添加到购物车。以下显示项目。 $res
在我的laravel购物车上,我创建了一个delete函数,使用json或dd函数进行测试时似乎还可以,但是尝试返回路线购物车 View Route [cart] not defined.时,这是一个
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
将相同的产品添加到购物车时,它正在添加新行,但如果相同的产品 ID 已在购物车中,则需要更新数量。 我需要它与数量更新保持一致。 最佳答案 您需要覆盖 app/code/core/Mage/Sales
你好, 我正在创建一个用于培训目的的 PHP 商店。我希望用户能够查看他最后下的订单 - 但我很难意识到这一点。 我的数据库中有这些表: 客户( child 、姓名、地址...) 产品(pid、pro
我正在考虑建立一个迷你购物网站。不涉及支付方式,只是显示和维护的所选产品的总数。这将由商店中的一个人操作以进行和监控销售。 概念是:产品应该在页面中显示为大图像,通过点击它们我将它们存储在购物车中。然
我有以下产品和购物车表格: //产品表 Products: id | Product_value ----------------------- 1 | Product
我尝试使用 php ang mysql 在 google 中搜索购物车中的代码。当我单击“添加到购物车”按钮时,我的 cart.php 中没有显示任何内容。请帮助我。 这是我的产品.php ">ADD
我正在为摄影业务创建 PHP 购物车。这是我尝试的第一个电子商务网站(新手) 我已成功将产品添加到购物车(存储在 session 中)(产品:打印品、 key 圈、磁铁等) 但是我还需要将 image
变量被添加到从另一个页面传递的 session 数组 此处为详细信息页面 string(4) "3911" [1]=> string(4) "5005" [2]=> NULL [3]=> strin
我的模型中设置了以下核心数据关系。 类别 -> 产品 -> 购物车产品 1)) { // handle error } else if (![cartProducts count]) {
我已经根据示例实现了jQuery的购物卡:http://jsfiddle.net/RR6z5/1/ 但是有一个小错误。当我将一个元素从产品拖到购物卡,然后无拖放,我从购物卡拖到产品时,产品中的原始元素
大家好,就 css 和 javascript 而言,我是个新手。我正在使用的新主题是让我的 paypal minicart 显示在内容下方,因此您不能单击它,也不能从中删除内容,但您可以看到购物车稍微
我是一名优秀的程序员,十分优秀!