Hi @hadarhacohen,
I’m sorry, but this is not possible. The hamburger menu is based on lots of conditions, it cannot contain other text.
Thanks for the fast reply,
Is there a way to change the icon to customize icon?
Or
Is there a way to add another bar, just above or below it, so i add there the word menue?
Reminder,
still waiting a reply.
Thanks,
Hadar
Hi @hadarhacohen,
The hamburger mobile menu icon is located in the wp-content/plugins/wpforo/wpf-themes/classic/header.php file. Here is the code:
<div class="wpf-left" style="display:table-cell">
<?php if(WPF()->tpl->has_menu()): ?>
<span class="wpf-res-menu"><i class="fas fa-bars"></i></span>
<?php WPF()->tpl->nav_menu() ?>
<?php endif; ?>
<?php do_action( 'wpforo_after_menu_items' ); ?>
</div>
Try to change the <i class="fas fa-bars"></i> part to whatever you want. In any case, create /wpforo/ folder in your current active WordPress theme folder and put the copy of the modified header.php file to that folder. This will keep the change after wpForo plugin update.