2023-06-21, 07:01 AM
In /jscripts/bbcodes_sceditor.js search for:
and replace with:
Now you must create mycodes in ACP for table, table-head, table-row and table-data.
That's all.
// Remove last bits of table, superscript/subscript, youtube and ltr/rtl support
$.sceditor.command
.remove('table').remove('subscript').remove('superscript').remove('youtube').remove('ltr').remove('rtl');
$.sceditor.formats.bbcode
.remove('table').remove('tr').remove('th').remove('td').remove('sub').remove('sup').remove('youtube').remove('ltr').remove('rtl');
and replace with:
// Remove last bits of table, superscript/subscript, youtube and ltr/rtl support
$.sceditor.command
.remove('subscript').remove('superscript').remove('youtube').remove('ltr').remove('rtl');
$.sceditor.formats.bbcode
.remove('sub').remove('sup').remove('youtube').remove('ltr').remove('rtl');
Now you must create mycodes in ACP for table, table-head, table-row and table-data.
That's all.