Hi @ownyou,
You can use the following filter to change it:
function wpbf_woo_custom_cart_icon() {
return '<i class="wpbff wpbff-bag"></i>';
}
add_filter( 'wpbf_woo_menu_item_icon', 'wpbf_woo_custom_cart_icon' );
The code goes to your child theme’s functions.php
Reference – https://wp-pagebuilderframework.com/docs/filters-2/
Also please make sure you’re running the latest version of the theme. The filter was just added recently 🙂
Best,
David
Thread Starter
OwnYou
(@ownyou)
thanks, works good:) Can I change the size of icon too?
Sure! 🙂
You can tweak the font size of the entire navigation in the customizer under Header > Navigation > Font Size
or
in case you only want to increase the icon size, you can achieve this with a little bit of custom css:
.wpbf-woo-menu-item .wpbff-bag {
font-size: 16px;
}
Add the code above to the Additional CSS tab in the customizer, that should do the trick 🙂