Open rickprince opened 8 years ago
I know it is a little late for this answer, but perhaps this could be useful for someone else.
To solve this issue, in the script named "ft.mx_select_plus.php" (expressionengine/third_party/mx_select_plus/ft.mx_select_plus.php)
Go to line 608:
change this:
$data = ( is_array() ) ? implode( '|', $data ) : $data;
to this:
$data = ( is_array($data) ) ? implode( '|', $data ) : $data;
Notice the $data inside the is_array() function
That should solve the issue
When trying to add items within a matrix row, I get this error:
Matrix field layout:
I'm running ee v2.10.1 with the latest version of matrix and mx select plus.
Any pointers?