Version 1.1.2 Invalid Argument Problem

On my portfolio page, I’m getting an error appearing when I mouse over the various portfolio images:
implode(): Invalid arguments passed in archive-jetpack-portfolio.php on line 46

Error can be seen here: http://brettmyersphotography.com/portfolio/

I’m also having other issues with the homepage widgets not appearing, as posted in another thread.

Brett

I noticed that line 46 can be avoided by deleting the project types and so I did in order to remove the error as a temporary solution.

Hi,

Please change the line #46 from this

echo '<span>' . implode( ' / ', esc_html( $project_types ) ) . '</span>';

to

echo '<span>' . implode( ' / ', $project_types ) . '</span>';

It will fix the issue. :slight_smile:

Let us know,

Thanks,
laranz.