Changing woocommerce shop icon

Changing word "cart" in icon

Hey Tom, I added: add_filter( ‘generate_woocommerce_menu_cart_icon’, ‘tu_change_wc_menu_cart_icon’ ); function tu_change_wc_menu_cart_icon() { return ‘<i class=”fa fa-shopping-cart” aria-hidden=”true”></i>’; } to the functions.php of the child theme. But somehow it keeps displaying the word “Cart” instead of the desired icon. I did not restrict font awesome in any way, any idea why this doesn’t get picked up? What … Read more