在这个很棒的社区的帮助下,我已经能够创建一个 WC minicart 链接作为最后一个菜单项。
查看官方 WC 文档后,我意识到我需要添加购物车片段,启用购物车 Ajax 事件的“自动更新”。
预期输出:用户点击添加到购物车和菜单项更新。
这是完整的代码,它或多或少地破坏了整个事情。我需要帮助结合这两个功能。
add_filter( 'wp_nav_menu_header-menu_items', 'minicart_link_with_product_count_subtotal_and_shipping', 10, 2 );
function minicart_link_with_product_count_subtotal_and_shipping( $items, $args ) {
$order_total = WC()->cart->total;
$order_subtotal = WC()->cart->get_subtotal();
$shipping_total = wc_price($order_total - $order_subtotal);
$link_url = wc_get_cart_url(); // cart url
// icon, product count, subtotal and shipping (based on if statement)
if (WC()->cart->is_empty()){
$link_text = sprintf( __( '<i class="shopping-cart"></i>', 'woocommerce' ));
} else {
$link_text = sprintf(__(
'<i class="shopping-cart"></i> %d - %s (%s)', 'woocommerce'),
WC()->cart->cart_contents_count,
wc_price(WC()->cart->get_subtotal()),
$shipping_total);
}
// link
$minicart_link = '<a title="View my cart" class="wcminicart" href="' . $link_url . '">' . $link_text . '</a>';
// return the link as last menu item
return $items . $minicart_link;
}
add_filter( 'woocommerce_add_to_cart_fragments', 'atc_fragments' );
function atc_fragments( $fragments ) {
ob_start();
$count = WC()->cart->cart_contents_count;
if ( $count > 0 ) { ?>
<span class="wcminicart-count"><?php echo esc_html( $count ); ?></span>
<?php
}
?></a><?php
$fragments['a.wcminicart'] = ob_get_clean();
return $fragments;
}