Filter: wpbf_edd_menu_item_icon
This filter lets you replace the Menu Item Icon with your icon of choice.
Default: Cart Icon (<i class=”wpbff wpbff-bag”></i>)
function your_prefix_edd_custom_menu_item_icon() { return ''; } add_filter( 'wpbf_edd_menu_item_icon', 'your_prefix_edd_custom_menu_item_icon' );
Filter: wpbf_edd_menu_item_title
This filter lets you replace the title for the WooCommerce Cart Menu Item (appears on hover).
Default: Shopping Cart
function your_prefix_edd_custom_menu_item_title() { return 'Basket'; } add_filter( 'wpbf_edd_menu_item_title', 'your_prefix_edd_custom_menu_item_title' );