Descrição
This plugin has been closed as of 24 Abril, 2025 and is not available for download. This closure is temporary, pending a full review.
Avaliações
8 Fevereiro, 2018
This plugin has not been tested with my current version of WordPress. But I’ll try to use it)
4 Novembro, 2017
This plugin isn’t very intuitive, and there isn’t any documentation available.
For example, where are people supposed to see their balance? How are they supposed to donate points to each other once that module is active?
25 Janeiro, 2017
all the options are great, need to work on it
3 Setembro, 2016
This plugin full of feature user point plugin and super responsive. But I need help here to view user rank and point for all user. They will be place on bottom user name in worpdress comment list. like this picture :
Screenshoot
I need php code and place for use it. I really need help here. Sorry my english realy bad.
Cubepoints
8 Fevereiro, 2017
It’s a great plugin with some issues:
Test Environment:Wordpress 3.9.2+the twentyfourteen theme,without any other plugins.
1. I18n:
1.1 Warning: _() expects exactly 1 parameter, 2 given in xxx\wp-content\plugins\cubepoints\modules\donate\donate.php on line 165
it should be:
'somethingWentWrongText' => __('Oops, something went wrong! Please try again later.', 'cp');
1.2 the backup.php file should add some ,'cp'to _();
1.3 line 80 of post_authors_points.php should be:
_e('Comment on your post was removed','cp'); and so on;
2. BUGS?
2.1 the ajax user search form on the wp-admin/admin.php?page=cp_admin_add_points page may be have some issue;
2.2 if I activate the Paid content module and set the ‘Multiply points earned by’ to 2, when some user pay for a post need to pay 10, Cubepoints will deduct 20 points from the user’s account.
3.for better I18n:
/**
* Update Cubepoints database for better i18n support
* @author suifengtec http://suoling.net/cubepoints-mysql
* @since 2014.09.09
*/
add_action('init','cwp_update_cubepoints_db_for_i18n');
function cwp_update_cubepoints_db_for_i18n(){
if(get_option('wp_cp_has_be_updated'))
return;
global $wpdb;
$charset_collate = '';
if ( ! emptyempty( $wpdb->charset ) ) {
$charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset}";
}
if ( ! emptyempty( $wpdb->collate ) ) {
$charset_collate .= " COLLATE {$wpdb->collate}";
}
$charset_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci";
$charset_done=$wpdb->query($charset_sql);
//latin1_swedish_ci
$type_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> CHANGE <code>type</code> <code>type</code> VARCHAR(256) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;";
$type_done=$wpdb->query($type_sql);
//latin1_swedish_ci
$data_sql="ALTER TABLE <code>{$wpdb->prefix}cp</code> CHANGE <code>data</code> <code>data</code> TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;";
$data_done=$wpdb->query($data_sql);
if($charset_done&&$type_done&&$data_done)
update_option('wp_cp_has_be_updated',true);
}
detail:CubePoints mysql charset issue
7 Fevereiro, 2017
Very good
Contribuidores e programadores
“CubePoints” é software de código aberto. As seguintes pessoas contribuíram para este plugin:
ContribuidoresTraduza o “CubePoints” para o seu idioma.
Interessado no desenvolvimento?
Consulte o código, consulte o repositório SVN, ou subscreva o registo de alterações por RSS.