Hi Dandann, hopefully you’ve figured this out already, but just in case, I’ll chime in.
What method did you use to install the plugin? Manual upload of the zip file? or from the WP Admin?
It looks like we have the right, valid header, but I’m also seeing a weird mix from the 1.3.0 tag folder in the repo, which we’ll need to discuss internally.
I got exactly the same issue. It’s a type-o on the plug-in installer which seems to be using JS syntax instead of PHP syntax. An easy fix:
Click on “Edit” for the Etsy Importer plug-in, then
Change:
// Define the base plugin directory for use throughout the plugin
To:
/* Define the base plugin directory for use throughout the plugin
*/
and save. You can know activate the plug-in.
// is a valid PHP comment method. Not sure why things seem to occasionally trigger this error still.
Just to chime in, I also had the ‘valid header’ issue.
Used the solution avantm suggested and it’s now working for me.
Agree that // shouldn’t be the cause of the problem, but changing it does fix it.