2023-06-21, 08:05 AM
(2023-06-21, 07:01 AM)Schnapsnase Wrote: In /jscripts/bbcodes_sceditor.js search for:
// 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.
Thanks it worked.