- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 WooCommerce 中,我使用一个代码来显示牛排重量选择表单,保存选择数据并在购物车、结帐页面、编辑订单时和电子邮件通知中显示此数据。
我的代码还结合了一个代码,在将任何产品添加到购物车时自动添加包装。添加包装发生在 SKU 上。
/**
* Display Custom Checkbox Field
*/
function steak_custom_field_add() {
global $post;
// Checkbox
woocommerce_wp_checkbox(
array(
'id' => '_steak_checkbox',
'label' => __('Steak Weight', 'woocommerce' ),
'description' => __( 'If necessary, enable steak weight selection', 'woocommerce' )
)
);
}
add_action('woocommerce_product_options_general_product_data', 'steak_custom_field_add', 10, 0 );
/**
* Save Custom Checkbox Field
*/
function steak_custom_field_save( $post_id ) {
$product = wc_get_product( $post_id );
// Custom Product Checkbox Field
$steak_checkbox = isset( $_POST['_steak_checkbox'] ) ? 'yes' : 'no';
// Update product meta
$product->update_meta_data( '_steak_checkbox', $steak_checkbox );
// Save
$product->save();
}
add_action('woocommerce_process_product_meta', 'steak_custom_field_save', 10, 1 );
/**
* Display Custom Select Box
*/
function display_steak_custom_field() {
global $post;
// Get product
$product = wc_get_product( $post->ID );
// If is single product page and have the "steak_checkbox" enabled we display the field
if ( $product->get_meta( '_steak_checkbox' ) === 'yes' ) {
echo '<div class="roast_select">';
$select = woocommerce_form_field( 'steak_custom_options', array(
'type' => 'select',
'class' => array('my-steak-select-box form-row-wide'),
'label' => __('Steak Weight'),
'required' => false,
'return' => false,
'options' => array(
'' => 'Please select...',
'300g' => '300g',
'400g' => '400g',
'500g' => '500g',
'600g' => '600g',
'700g' => '700g',
'800g' => '800g',
'900g' => '900g',
'1000g' => '1000g'
)
), '' );
echo $select;
echo '</div>';
?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
console.log('it works 1');
var price = <?php echo $product->get_price(); ?>, currency = '<?php echo get_woocommerce_currency_symbol(); ?>';
$( '[name=steak_custom_options]' ).change(function(){
if (!(this.value < 1)) {
var dropdown_val = this.value;
var remove_g = dropdown_val.replace( 'g', '' );
var remove_double_zero = remove_g.replace( '00', '' );
var product_total = parseFloat( price * remove_double_zero );
// For single product page
$( '.entry-summary .woocommerce-Price-amount' ).html( currency + product_total.toFixed(2));
// quick-view-custom-price
$( '.quick-view-custom-price .woocommerce-Price-amount' ).html( currency + product_total.toFixed(2));
}
});
});
</script>
<?php
}
}
add_action( 'woocommerce_before_add_to_cart_button', 'display_steak_custom_field', 10, 0 );
/**
* Add as custom cart item data
*/
function add_custom_steak_cart_item_data( $cart_item_data, $product_id, $variation_id, $quantity ) {
// Get product
$product = wc_get_product( $product_id );
// Get product sku
$product_sku = $product->get_sku();
if ( !empty( $_POST['steak_custom_options'] ) && $product_sku != 'lunchbox' ) {
$cart_item_data['steak_option'] = $_POST['steak_custom_options'];
}
return $cart_item_data;
}
add_filter( 'woocommerce_add_cart_item_data', 'add_custom_steak_cart_item_data', 10, 4 );
/**
* Add custom fields values under cart item name in cart
*/
function steak_custom_field_add_cart( $item_name, $cart_item, $cart_item_key ) {
if( is_cart() ) {
if( isset( $cart_item['steak_option'] ) ) {
$item_name .= '<div class="my-steak-class"><strong>' . __("Steak Weight", "woocommerce") . ':</strong> ' . $cart_item['steak_option'] . '</div>';
}
}
return $item_name;
}
add_filter( 'woocommerce_cart_item_name', 'steak_custom_field_add_cart', 10, 3 );
/**
* Calculate the number of lunchboxes and package, based on the number of products in cart.
*/
function add_delivery_charge_to_cart( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
/********** SETTINGS **********/
$lunchbox_sku = 'lunchbox'; // "LunchBox SKU" to be added to cart
$pakket_sku = 'pakket'; // "Pakket SKU" to be added to cart
$exclude_categories = array( 'drink', 'bread' ); // Exclude these categories
/********** END SETTINGS **********/
// Get product ID by SKU
$lunchbox_id = wc_get_product_id_by_sku( $lunchbox_sku );
$pakket_id = wc_get_product_id_by_sku( $pakket_sku );
$category_qty_total = 0; // Total of category quantity items, Don't edit!!
/********** LOOP THROUGH CART ITEMS **********/
foreach ( $cart->get_cart() as $cart_item_key => $cart_item ) {
// Get product id
$product_id = $cart_item['data']->get_id();
// Get product quantity
$product_qty = $cart_item['quantity'];
// Check if "LunchBox" product is already in cart
if( $product_id == $lunchbox_id ) {
$lunchbox_key = $cart_item_key;
$lunchbox_qty = $product_qty;
}
// Check if "Pakket" product is already in cart
if( $product_id == $pakket_id ) {
$pakket_key = $cart_item_key;
$pakket_qty = $product_qty;
}
// Check if product belongs to a certain category
if( has_term( $exclude_categories, 'product_cat', $product_id ) ) {
$category_qty_total += $product_qty;
}
// Check if product, contains steak weight
if( isset( $cart_item['steak_option'] ) ) {
// Remove the last 2 zeros (100g becomes 1, 300g becomes 3, 1000g becomes 10, etc...)
// Remove 'g' from grams
// convert string to integer
$chosen_weight = (int) str_replace( '00', '', str_replace('g', '', $cart_item['steak_option']) );
// Get current price
$current_price = $cart_item['data']->get_price();
// Set new price, price is already known per 100g
$cart_item['data']->set_price( $current_price * $chosen_weight );
}
}
/********** CALCULATE THE TOTALS, SO "LUNCHBOX", "PAKKET" & CATEGORIES ARE NOT USED IN THE TOTALS **********/
// Get total items in cart, counts number of products & quantity per product
$total_items_in_cart = $cart->get_cart_contents_count();
// Total items in cart - category quantity total
$total_items_in_cart -= $category_qty_total;
// Lunchbox total = total_items_in_cart & pakket total = total_items_in_cart
$lunchbox_total = $total_items_in_cart;
$pakket_total = $total_items_in_cart;
// Isset lunchbox qty -> lunchbox total - lunchbox qty & pakket total - lunchbox qty
if ( isset($lunchbox_qty) ) {
$lunchbox_total -= $lunchbox_qty;
$pakket_total -= $lunchbox_qty;
}
// Isset pakket qty -> lunchbox total - pakket qty & pakket total - pakket qty
if ( isset($pakket_qty) ) {
$lunchbox_total -= $pakket_qty;
$pakket_total = $pakket_total - $pakket_qty;
}
/********** APPLY NEW TOTALS TO LUNCHBOX & PAKKET **********/
// If product "LunchBox" is in cart, we check the quantity to update it if needed
if ( isset($lunchbox_key) && $lunchbox_qty != $total_items_in_cart ) {
// Set quantity, lunchbox
$cart->set_quantity( $lunchbox_key, $lunchbox_total );
} elseif ( !isset($lunchbox_key) && $total_items_in_cart > 0 ) {
// Product "LunchBox" is not in cart, we add it
$cart->add_to_cart( $lunchbox_id, $total_items_in_cart );
}
// Total items in cart greater than or equal to 3
if ( $total_items_in_cart >= 3 ) {
// Pakket total = pakket_total / 3 = floor(result)
// Floor = round fractions down, rounding result down
$pakket_total = floor( $pakket_total / 3 );
// If product "Pakket" is in cart
if ( isset($pakket_key) ) {
// Set quantity, pakket
$cart->set_quantity( $pakket_key, $pakket_total );
} elseif ( !isset($pakket_key) ) {
// Product "Pakket" is not in cart, we add it
$cart->add_to_cart( $pakket_id, $pakket_total );
}
}
}
add_action( 'woocommerce_before_calculate_totals', 'add_delivery_charge_to_cart', 10, 1 );
/**
* Display custom fields values under item name in checkout
*/
function steak_custom_checkout_cart_item_name( $item_qty, $cart_item, $cart_item_key ) {
if( isset($cart_item['steak_option']) ) {
$item_qty .= '<div class="my-steak-class"><strong>' . __("Steak Weight", "woocommerce") . ':</strong> ' . $cart_item['steak_option'] . 'g</div>';
}
return $item_qty;
}
add_filter( 'woocommerce_checkout_cart_item_quantity', 'steak_custom_checkout_cart_item_name', 10, 3 );
/**
* Display custom fields values under item name in checkout
*/
function save_order_item_steak_field( $item, $cart_item_key, $values, $order ) {
if( isset($values['steak_option']) ) {
$key = __('Steak Weight', 'woocommerce');
$value = $values['steak_option'];
$item->update_meta_data( $key, $value ,$item->get_id());
}
}
add_action('woocommerce_checkout_create_order_line_item', 'save_order_item_steak_field', 10, 4 );
有一次,用户@7uc1f3r 帮助进行了自定义排序,使包装始终位于购物车中产品列表的最底部。
function sort_cart_specific_product_at_bottom( $cart ) {
// Product id's to to display at tbe bottom of the product list
$product_ids_last = array( 30, 815 );
// Set empty arrays
$products_in_cart = array();
$products_last = array();
$cart_contents = array();
// Loop through cart items
foreach ( $cart->get_cart() as $cart_item_key => $cart_item ) {
// Get product id
$product_id = $cart_item['data']->get_id();
// In_array — checks if a value exists in an array
if ( in_array( $product_id, $product_ids_last) ) {
// Add to products last array
$products_last[ $cart_item_key ] = $product_id;
} else {
// Add to products in cart array
$products_in_cart[ $cart_item_key ] = $product_id;
}
}
// Merges the elements together so that the values of one are appended to the end of the previous one.
$products_in_cart = array_merge( $products_in_cart, $products_last );
// Assign sorted items to cart
foreach ( $products_in_cart as $cart_item_key => $product_id ) {
$cart_contents[ $cart_item_key ] = $cart->cart_contents[ $cart_item_key ];
}
// Cart contents
$cart->cart_contents = $cart_contents;
}
add_action( 'woocommerce_cart_loaded_from_session', 'sort_cart_specific_product_at_bottom', 10, 1 );
但不幸的是,排序代码有点过时,因为现在包裹是按SKU添加的,而不是按ID添加的。因此,排序不起作用。
如果按 SKU 添加包装,如何更改排序代码?
我很乐意为您提供帮助!
最佳答案
以下代码将根据产品 sku 对产品进行最后排序
相关主题:
function sort_cart_specific_product_at_bottom( $cart ) {
// Product sku to to display at tbe bottom of the product list
$product_sku_last = array( 'lunchbox', 'pakket' );
// Set empty arrays
$products_in_cart = array();
$products_last = array();
$cart_contents = array();
// Loop through cart items
foreach ( $cart->get_cart() as $cart_item_key => $cart_item ) {
// Get product sku
$product_sku = $cart_item['data']->get_sku();
// Get product id
$product_id = $cart_item['data']->get_id();
// In_array — checks if a value exists in an array
if ( in_array( $product_sku, $product_sku_last ) ) {
// Add to products last array
$products_last[ $cart_item_key ] = $product_id;
} else {
// Add to products in cart array
$products_in_cart[ $cart_item_key ] = $product_id;
}
}
// Merges the elements together so that the values of one are appended to the end of the previous one.
$products_in_cart = array_merge( $products_in_cart, $products_last );
// Assign sorted items to cart
foreach ( $products_in_cart as $cart_item_key => $product_id ) {
$cart_contents[ $cart_item_key ] = $cart->cart_contents[ $cart_item_key ];
}
// Cart contents
$cart->cart_contents = $cart_contents;
}
add_action( 'woocommerce_cart_loaded_from_session', 'sort_cart_specific_product_at_bottom', 10, 1 );
并且此代码确保基于 sku 的商品不会从购物车中移除
function prevent_cart_item_remove_link( $link, $cart_item_key ) {
// Product sku that should not be removable
$product_sku_last = array( 'lunchbox', 'pakket' );
if( WC()->cart->find_product_in_cart( $cart_item_key ) ) {
$cart_item = WC()->cart->cart_contents[ $cart_item_key ];
// Get product sku
$product_sku = $cart_item['data']->get_sku();
// In_array — checks if a value exists in an array
if ( in_array( $product_sku, $product_sku_last ) ) {
$link = '';
}
}
return $link;
}
add_filter( 'woocommerce_cart_item_remove_link', 'prevent_cart_item_remove_link', 10, 2 );
关于php - 按 SKU 对购物车 WooCommerce 中产品列表底部的产品进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61240043/
假设我们有: SKU 为“product-sku”的产品 带有 SKU“custom-option”的自定义选项 如果我们现在添加此产品并在购物车中选择此自定义选项,则此产品的 SKU 将在结帐页面上
有没有一种方法可以将我现有的基本 sku LB 替换为标准 LB,而不会造成停机? 运行 3 层架构应用程序/网络/数据库。 我的想法是创建新的标准 sku,按照基本配置 100%,然后只需将每个公共
在购物车页面上,我需要能够使用子 SKU 获取父 SKU。 我尝试了从 Magento 论坛和 StackOverflow 上类似问题中截取的几段代码,但没有成功。 我可以使用 getTypeId()
每一个。我有一个像这样的 mySQL 表: DATA(sku,quantity) ABC 55 ABC_DE005 1 ABC_DE006 1 ABC_DE007
我正在尝试从其中一个子简单产品的 SKU 或 ID 中获取父可配置产品 SKU。我的理解是一个简单的可以属于多个可配置项,但我希望客户添加到他们的购物车中的特定可配置项。我读了 related que
我不是编码员(只是脚本 fiddler ),我遇到了 Magento 的一个特殊问题,我无法用代码或数据来解释,所以我需要解释一下情况。我销售有多种选择的可配置产品。这些家具产品使用各种代码来描述产品
我有一个奇怪的情况。这是我的模型: UpcCode => UpcCode(id: integer, Upc: string, Sku: string, Active: boolean, created
这可以通过一条语句实现吗? 我的数据库中有多个表。 使用这个SELECT检索子 sku 数组(又名产品列表 sku) SELECT SKU FROM MasterSKU WHERE '4048' IN
我们有一个附加了 IP 的虚拟网络网关。它的设置如上所述here . 现在我们有这个“警报”: Upgrade to Standard SKU - Microsoft recommends Stand
我们正在开发一款应用程序,允许我们的 Azure 管理员监控组织中人员的 Azure 资源请求。 有一个要求,我想通过某些 API(如果可用)获取所有可能的 SKU 和 SKU 容量的列表。我本可以对
我们正在开发一款应用程序,允许我们的 Azure 管理员监控组织中人员的 Azure 资源请求。 有一个要求,我想通过某些 API(如果可用)获取所有可能的 SKU 和 SKU 容量的列表。我本可以对
在我的新订单电子邮件中,我有产品的 SKU,但我想从订单电子邮件中删除它。我该怎么做? 最佳答案 这其实是个好问题。感谢您询问 Patrik。 此操作无法从管理界面完成,因为带有订单项的 block
在functions.php中 add_action( 'woocommerce_add_order_item_meta', 'custom_add_item_sku', 10, 3 ); funct
我正在开发的网站上的完整和部分 SKU 搜索已停止工作,此功能之前曾有效。 当此方法有效时,比较网站的旧版 .SQL,我看不到 core_config_data 的任何更改会以这种方式影响网站。 搜索
在functions.php中 add_action( 'woocommerce_add_order_item_meta', 'custom_add_item_sku', 10, 3 ); funct
我尝试在订购 sample 时将文本附加到 SKU。 我尝试了以下代码来修改标题, function cart_title($title, $values, $cart_item_key){
loadByIncrementId($orderNumber); foreach ($order->getAllItems() as $item){ $productOptions = $it
我正在为我的产品 SKU 编写自定义文本字段类型。 如果我有一个 SKU,例如 ABC-DEF123G/5(仅作为示例),我希望用户能够使用或不使用标点符号进行搜索。在许多情况下,只有部分 SKU 是
我正在构建一个模块化项目,并且正在寻找使我们能够为不同客户构建该产品的多个倾斜的最佳方法。它需要在构建过程中完成,以免客户更改配置文件中的值来启用模块。 我最好的猜测是与特定构建相关联的某种环境变量集
我正在将应用内结算添加到我现有的一个应用中。为了测试这一点,我在 google play 中创建了一个草稿应用程序,上传了带有应用程序内计费的新版本的 apk 并添加了一个产品。我激活了这个产品,但我
我是一名优秀的程序员,十分优秀!