Hi,
In my order mail alert I want to use: {{ $order_menu[‘menu_quantity’] }}x {{ $order_menu[‘menu_name’] }} {!! $order_menu[‘menu_options’] !!}
result I used to get is for example: 1x Bottle of Coke (all in one line)
After recent updates, I am getting: 1x Bottle of
Coke
When I looked further into it, I found a built in <br> automatically gets included just before order menu options.
You can find it simply using your browser inspect option, where it shows:
“ 1x Bottle ”
<br>
“ Coke ”
I have been looking for classes to change it, but not sure where I can find it {!! $order_menu[‘menu_options’] !!}
I will appreciate if you can tell me file location to remove this additional <br>comes automatically with every menu options name.
Many Thanks