gpt4 book ai didi

php - 在 Woocommerce 中使用 AJAX 刷新/更新微型购物车

转载 作者:行者123 更新时间:2023-12-02 17:09:32 25 4
gpt4 key购买 nike

我正在尝试将这段代码添加到我的 WooCommerce 设置中,它在我放置 PHP 的任何地方添加一个购物车链接,然后在使用 AJAX 更改购物车中的项目时更新它:https://docs.woocommerce.com/document/show-cart-contents-total/

以下是片段:

HTML - PHP:

<a class="cart-customlocation" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf ( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count() ), WC()->cart->get_cart_contents_count() ); ?> - <?php echo WC()->cart->get_cart_total(); ?></a>

functions.php 文件中:

function woocommerce_header_add_to_cart_fragment( $fragments ) {
global $woocommerce;

ob_start();

?>
<a class="cart-customlocation" href="<?php echo esc_url(wc_get_cart_url()); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
<?php
$fragments['a.cart-customlocation'] = ob_get_clean();
return $fragments;
}

但是 AJAX 不工作。我需要将第二个片段添加到 functions.php 中吗?

感觉我应该调用函数而不是定义它?

或者我是否需要以某种方式通常激活 AJAX 才能使其正常工作?

最佳答案

您的函数中缺少过滤器 Hook woocommerce_add_to_cart_fragments ...

要让它工作,它应该是:

add_filter( 'woocommerce_add_to_cart_fragments', 'header_add_to_cart_fragment', 30, 1 );
function header_add_to_cart_fragment( $fragments ) {
global $woocommerce;

ob_start();

?>
<a class="cart-customlocation" href="<?php echo esc_url(wc_get_cart_url()); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
<?php
$fragments['a.cart-customlocation'] = ob_get_clean();

return $fragments;
}

代码进入事件子主题(或事件主题)的 function.php 文件。未经测试。

关于php - 在 Woocommerce 中使用 AJAX 刷新/更新微型购物车,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49941502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com