For sites that have WP_CONTENT_DIR relocated, Comment out line 59
//require( WP_CONTENT_DIR . '/plugins/' . S2DIR . 'include/buttonsnap.php' );
and replace with this:
require( S2DIR . 'include/buttonsnap.php' );
For sites that have WP_CONTENT_DIR relocated, Comment out line 59
//require( WP_CONTENT_DIR . '/plugins/' . S2DIR . 'include/buttonsnap.php' );
and replace with this:
require( S2DIR . 'include/buttonsnap.php' );
@Anmari,
That fix should also work on sites where WP_CONTENT_DIR has _not_ been relocated. I'll test and make sure and roll this patch into the next release if I'm right. Thanks for the tip.
@Anmari,
Ah, very nearly right. Use S2PATH instead of S2DIR and it should work on all installs. Can you check that still works when wp-content has been moved.
You must log in to post.