Hi there!
I need to add word "MENU" next to burger icon. So I found this part of page is being generated in
/plugins/system/helixultimate/layouts/frontend/modules.php
I'd love to use css ::before or ::after to add this text, but I have multilingual site, so this approach won't work, as long as helix framework ignores whatever css classes I'm trying to apply to menu module, it's transfered inside menu, but not applied to actual place where burger icon is (in header, I mean).
As result, I HAVE to add something like
$output .= Text::_( 'MENU' ) . '</a>';
to modules.php file.
So, question is where is safe place for my override version of modules.php, so that it won't be overriden by default file on next update?
Thanks in advance!