Wishlist item counter in top bar menu of website
-
Hi,
I want to add an item counter to the wishlist page link in the top bar menu of my site. I tried a few solutions with adding a[yith_wcwl_items_count]
shortcode, but I still do not get a counter in the menu link. Could someone please help me add an item counter to the link? Thanks in advance! ??The code I’m currently using in my
functions.php
of my child theme:if ( function_exists( 'YITH_WCWL' ) ) { if ( ! function_exists( 'yith_wcwl_add_counter_shortcode' ) ) { function yith_wcwl_add_counter_shortcode() { add_shortcode( 'yith_wcwl_items_count', 'yith_wcwl_print_counter_shortcode' ); } } if ( ! function_exists( 'yith_wcwl_print_counter_shortcode' ) ) { function yith_wcwl_print_counter_shortcode() { ?> <?php echo "test"; ?> <?php echo esc_html( yith_wcwl_count_all_products() ); ?> <?php } } add_action( 'init', 'yith_wcwl_add_counter_shortcode' );
Sincerely,
userwhosme
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Wishlist item counter in top bar menu of website’ is closed to new replies.