【问题标题】:Wishlist item counter in top bar menu of website (YITH Wishlist/WooCommerce)网站顶部栏菜单中的愿望清单项目计数器(YITH Wishlist/WooCommerce)
【发布时间】:2021-02-22 16:44:18
【问题描述】:

我想在我的网站顶部栏菜单的愿望清单页面链接中添加一个项目计数器。我尝试添加和使用简码,但计数器仍然没有显示在菜单链接中 - 而不是菜单链接是 Wishlist X(其中 X 是愿望清单中的项目数),它只显示为 Wishlist .有人可以帮我在链接中添加一个项目计数器吗?提前致谢! ????

我目前在我的子主题的functions.php 中使用的代码:

function tnc_wishlist_counter_cart(){
    global $woocommerce;
    $wl_items = YITH_WCWL()->get_products();
    $count = 0;
    foreach ($wl_items as $key => $item) {
        $count = $count + 1;
    }
    return $count;
}
add_shortcode( 'tnc-wishlist-counter', 'tnc_wishlist_counter_cart' );

在顶部菜单项的导航标签中,我添加了这个:
Wishlist <?php echo do_shortcode('[tnc-wishlist-counter]'); ?>

【问题讨论】:

    标签: php wordpress


    【解决方案1】:

    因此,在 YITH 主题支持的帮助下,我设法找到了答案! :) 分享 link 以防万一有人也需要这个

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2023-01-17
      • 2017-01-17
      • 2014-07-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多