Quote:
Originally Posted by edytwinky
Unfortunately all tables that use the [ table ] code now that I've upgraded to 4.25 says, "No code has to be inserted here." and the table doesn't show.
|
Not sure if it'll work with 4.25 but I had problems with 3.8.11 and PHP 7.1
You could try changing the following:
Product -> vBCode table
Hook -> bbcode_create
Title -> parse vBcode table
Code:
Change near the top, around line 10:
$table_content = ''; #(exploded) table content
To
$table_content = array(); #(exploded) table content
Couple of lines down change:
$bbcode_table = '';
to
$bbcode_table = array();
Search for #BODY (it's about half way down)
Code:
Change:
$table_rows = '';
To:
$table_rows = array();