Plugin info

Total downloads: 1,837
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 9/17/2015 (3805 days ago)
Added to WordPress: 8/18/2015 (10 years old)
Minimum WordPress version: f
Tested up to WordPress version: 4.3.34
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3805 days ago

20/100

Is Classifiers abandoned?

Possibly abandoned (last update 3805 days ago).

Compatibility

Requires WordPress: f
Tested up to: 4.3.34
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

This plugin is meant for theme developers.
It adds a new admin side page Classifiers, where you can define your classifiers and categories.

Example: Your site user needs to select her favorite color.
1.) Define classifier category ‘color’
2.) Define classifiers: ‘black’, ‘blue’ etc.

Displaying these options in your template:
$cm = new ClassifierManager();
print_r($cm->getClassifiers(1));
OR AJAX:
$http({
method: ‘POST’,
url: $scope.ajaxurl,
params: {
‘action’: ‘wpc_ajax_getclassifiers’,
‘security’: $scope.nonce,
‘category’ : 1
}
}).success( function( data ) {
//do something..
});

Installation

  1. Upload classifiers folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

What does this plugin do?

This plugin adds a new admin side page Classifiers.
There you can define your classifiers and categories.

Example: Your site user needs to select her favorite color.
1.) Define classifier category ‘color’
2.) Define classifiers: ‘black’, ‘blue’ etc.
3.) Display these options in your template:
$cm = new ClassifierManager();
print_r($cm->getClassifiers(1));
OR AJAX:
$http({
method: ‘POST’,
url: $scope.ajaxurl,
params: {
‘action’: ‘wpc_ajax_getclassifiers’,
‘security’: $scope.nonce,
‘category’ : 1
}
}).success( function( data ) {
//do something..
});

Review feed

No reviews available

Screenshots

  1. Category list

    Category list

  2. Category view

    Category view

  3. Classifier view

    Classifier view

Changelog

1.1 [17/09/15]

  • New feature: Change classifier positions

1.0

  • Initial