Plugin info

Total downloads: 1,092
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 7
Last updated: 11/4/2014 (4075 days ago)
Added to WordPress: 11/4/2014 (11 years old)
Minimum WordPress version: 4.0
Tested up to WordPress version: 4.0.38
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4075 days ago

20/100

Is bSocial comments abandoned?

Possibly abandoned (last update 4075 days ago).

Compatibility

Requires WordPress: 4.0
Tested up to: 4.0.38
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

  1. This section needs development.
  2. Adds featured comments selected by editors
  3. Adds ability for users to flag comments
  4. Adds ability for users to fave comments
  5. Adds support for registering new comment types and statuses, similar to WP core’s register_post_type(), see the section on registering custom comment types

History

Featured comments were originally introduced in bSocial (plugin repo, github), but have moved here. New bSocial commenting features will be developed in this plugin.

In the WordPress.org plugin repo

Eventually here: https://wordpress.org/plugins/bsocial-comments/

Fork me!

This plugin is on Github: https://github.com/misterbisson/bsocial-comments

Build status

Master build status at Travis-CI:

Registering custom comment types

Custom comment types

`php

$args = array(
‘labels’ => array(
‘name’ => ‘Faves’,
‘singular_name’ => ‘Fave’,
‘edit_item’ => ‘Edit Fave’,
‘update_item’ => ‘Update Fave’,
‘view_item’ => ‘View Fave’,
‘all_items’ => ‘All Faves’,
),
‘description’ => ‘Comment faves’,
‘public’ => TRUE,
‘show_ui’ => TRUE,
‘admin_actions’ => array( ‘trash’, ‘untrash’, ‘delete’ ),
‘statuses’ => array(
‘feedback’,
‘trash’,
),
);

bsocial_comments()->register()->comment_type( ‘fave’, $args );
`

Custom comment statuses

`php

$args = array(
‘label’ => ‘Feedback’,
‘label_count’ => _n_noop( ‘Feedback (%s)’, ‘Feedback (%s)’ ),
‘status_links_show’ => TRUE,
‘include_in_all’ => FALSE,
);

bsocial_comments()->register()->comment_status( ‘feedback’, $args );
`

Installation

  1. Place the plugin folder in your wp-content/plugins/ directory and activate it.
  2. Use the default options, or filter go_config to return the options you want (when the second arg = bsocial-comments).
  3. Have fun, feature some comments!

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available