Have you checked for any sort of error logs, if possible? Any sort of screenshots that you could provide?
I get this on activate:
Notice: Use of undefined constant __DIR__ – assumed ‘__DIR__’ in /home3/barksan8/public_html/wp-content/plugins/etsy-importer/etsy-importer.php on line 47
I’m having to guess you’re on PHP 5.2 for your server.
Is it at all possible that you could move that up to a newer version?
If not, then we’ll need to modify the plugin briefly to make that line work for the moment. It’s something that’s fixed in the next intended release, but it’s not done quite yet.
Let me know which you’d prefer.
My version of PHP is 5.4.24
Odd that it’s not available then.
Until then, let’s try changing the __DIR__ on both line 47 and 49, to the following:
dirname( __FILE__ )
Make it match like this:
if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) {
and
} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) {
Hopefully that resolves this for you.
Perfect, that did it. All set to go.
Thanks.