Hey @darwinstubby,
There is no quick way to fix that right now as it requires changes in multiple files but we have fixed it for next minor version which should be released fairly soon.
Hi Pricelisto,
Thanks for the reply.
For a very rough workaround, I replaced
$item_desc = isset( $_POST[‘item_desc’] ) ? sanitize_text_field($_POST[‘item_desc’] ) : 0;
with
$item_desc = isset( $_POST[‘item_desc’] ) ? wp_strip_all_tags( $_POST[‘item_desc’] ) : 0;
on line 111 of ./includes/admin/class-brm-admin-items.php
and then replaced line 63 of ./templates/func-temp/minimalist.php with
<div class=”brm-item-description”><?php echo nl2br($item->description); ?></div>
We need new lines in the “item description” because the menu is bilingual. Looks a bit odd having a different language start on the same line.
Looking forward to the next release…
This should be fixed in latest 1.2.0 version. Closing this post.