Hi,
PHP 7 and lower
A lot of warnings generated by mistake in code.
Warning: Illegal string offset ‘data-column-id’ in …\wp-content\plugins\mpc-massive\shortcodes\mpc_column\mpc_column.php on line 101
and
Warning: Invalid argument supplied for foreach() in …\wp-content\plugins\mpc-massive\shortcodes\mpc_column\mpc_column.php on line 128
Please create a pull request for the plugin developer (or report a problem) and ask for a new version.
Massive Addons for Visual Composer v2.1
mpc-massive\shortcodes\mpc_column\mpc_column.php
method MPC_Column::reset
Now is:
function reset() {
$this->css_id = '';
$this->classes = '';
$this->sh_atts = '';
$this->atts = $this->defaults;
libxml_clear_errors();
}
should be:
function reset() {
$this->css_id = '';
$this->classes = '';
$this->sh_atts = array();
$this->atts = $this->defaults;
libxml_clear_errors();
}