Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zackeryfretty/76b35af9ce68ae16241fd20a0e5d4894 to your computer and use it in GitHub Desktop.
Save zackeryfretty/76b35af9ce68ae16241fd20a0e5d4894 to your computer and use it in GitHub Desktop.
Useful for replacing the default SVG with anything from Font Awesome or etc.
// Replace Beaver Builder Menu Module Mobile Menu Icon
function zf_replace_menu_icon($menu_icon) {
// Use anything from FontAwesome (or anything, really). Go nuts!
$menu_icon = '<i class="fas fa-bars fa-lg"></i>';
return $menu_icon;
}
add_filter( 'fl_builder_mobile_menu_icon', 'zf_replace_menu_icon', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment