Support » Plugin: SEO Facebook Comment » Solution to conflict with BWP Minify

  • I had a conflict with the BWP Minify. It couldn’t package the css
    for seo facebook comments and thus broke all css.

    I’m putting this here in the hopes it might make it into a future version of the plugin.
    The following path needs to be relative, not absolute.

    On line 25 of seofacebook.php, the following line needs to be changed like so.

    BEFORE:
    define( “PLULZ_SEOFB_PLUGIN_ASSETS”, WP_PLUGIN_URL . ‘/’ . str_replace(basename( __FILE__),””,plugin_basename(__FILE__)) . ‘assets/’);

    AFTER:
    define( “PLULZ_SEOFB_PLUGIN_ASSETS”, ‘/wp-content/plugins/’ . str_replace(basename( __FILE__),””,plugin_basename(__FILE__)) . ‘assets/’);

    Thanks,
    Ben

    http://wordpress.org/plugins/seo-facebook-comments/

  • The topic ‘Solution to conflict with BWP Minify’ is closed to new replies.