Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Comments] Howto change FB Comments Box to GermanI added an option to set the language form the option panel and i’ll update soon.
Forum: Plugins
In reply to: [Social Comments] Facebook comments dopey error messageboth issues described here are actually bugs in the Facebook comments system and not this plugin or your site.
Forum: Plugins
In reply to: [Social Comments] Inclusion in the WooCommerce systemWooCommerce product pages have reviews and not comments.
You can add comments using the comments_template function which will display the social comments on product pages.I did something for a client which add a product tab with the comments inside it, something like this:
add_filter( 'woocommerce_product_tabs', 'add_social_comments_tab' ); function add_social_comments_tab($tabs){ $tabs[ 'comments' ] = array( 'title' => __( 'Comments' ), 'priority' => 25, 'callback' => 'get_social_comments' ); } function get_social_comments(){ global $withcomments; $withcomments = 1; comments_template(); }Forum: Plugins
In reply to: [Social Comments] Works on pages, not on postsmake sure you don’t have any JavaScript errors on the single post page and that the single post template is calling the comment template the same way that the page template is.
Forum: Plugins
In reply to: [Social Comments] Fails to show Disqus in IE and FFJust tested it and its working fine on my end.
Forum: Plugins
In reply to: [Social Comments] Space between 2 comment systemThe answer to both is CSS my friend.
Forum: Plugins
In reply to: [Social Comments] Comments showing on single posts onlyyeah that wont work very good even if the filter hook would work since the code is programmed for one instance per page.
you can do it with some custom coding but as long as you are not using disqus comment which don’t support multiple comment threads on a single page.
Forum: Plugins
In reply to: [Social Comments] Have to refresh page to get social comments to show upLooks fine to me.
Forum: Plugins
In reply to: [Social Comments] Installed plugin nothing happenedtry disabling on plugin at a time and find which one is conflicting.
Forum: Plugins
In reply to: [Social Comments] Two dots appearing next to social comments tabsIt looks like its coming from your theme’s CSS.
Try adding this to the botton of your theme style.css file#social_comments_nav{list-style: none !important;}Forum: Plugins
In reply to: [Social Comments] Enter your Facebook APIHi,
The Facebook app ID is optional if you want to moderate the comments.
As for the API, You don’t need any API just App ID and sadly you do need to create an app for it.I’ll add some help tabs to the option panel of the plugin.
Forum: Plugins
In reply to: [User Specific Content] Dashboard missing after installing USC 1Thanks for reporting, i pushed an update and its fixed now in 1.0.1
Forum: Plugins
In reply to: [Social Comments] Don't work with WPMUhm i have it working just fine on an WPMU install,
make sure you set the settings in each site and make sure your theme supports comments.php file.Forum: Plugins
In reply to: [Social Comments] Icons are stacked?You have a JavaScript error coming from main.js in your theme, and also your disqus shortname has a space in the middle which is most likely wrong.
Forum: Plugins
In reply to: [Social Comments] Fatal errorIts fixed next update.
thanks