Bryan Lee
Forum Replies Created
-
Forum: Plugins
In reply to: [Kingkong Board] ???????? ??? ??? ??????? CSS ? ??? ????? ?? ?? ?????. CSS ? text-align:left ??? ??? ????.
??? ???? ??? kkb_latest_title ?? ??? ?? ??? ??? ???. ?? ???? php ? ??? ??? ?? ? ?????.Forum: Plugins
In reply to: [Kingkong Board] ?? ?? CSS ???? ?? ????~?? style.css ??? ??? ?? ?????~
#kingkongboard-wrapper input[type=’text’], input[type=’file’], input[type=’password’] {
max-height:inherit !important
}Forum: Plugins
In reply to: [Kingkong Board] ? ??? ?? ?? ?? ?? ??? ????.??? ?? ???.
Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????. 2???????~! ^^
Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????. 2.kingkongboard-comment-wrapper > .comments-add .kkb-comment-content-li .kkb-comment-content-table {
display:inline-table !important;
}? ??? ??? style.css ? ?? ??? ????.
Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????. 2???? display:inline-table ????? ???? ???? ???? ??? ???? ????? 1.6.4 ??? ???? ?????.
?????? ???? ?? ??? ? ??????.Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????. 2?? ??? ??? ????? ????? ?? ? ?????.
Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????.?? ??
Forum: Plugins
In reply to: [Kingkong Board] ??? ????? ??? ???? ????.?? style.css ? ??? ?? ? ???~
#kingkongboard-wrapper > #kingkongboard-table {
display:inline-table !important;
}
#kingkongboard-wrapper > p {
height:0;
margin:0;
}Forum: Plugins
In reply to: [Kingkong Board] ????? ???? ????? ???.??? ?? ??? ?????. ??????? ?? ?????? ????.
Forum: Plugins
In reply to: [Kingkong Board] ??? ???? ??? ??? ?? ?????????? functions.php ? ??? ?? ???.
add_action( ‘kingkongboard_latest_option_after’, ‘my_custom_option_value’,10 );
function my_custom_option_value(){
echo ‘<option value=”unique_section_list”>???????</option>’;
// ?? ??? ????? ??? ?? ???? ???.
}add_action(‘kingkongboard_latest_display_before’, ‘my_latest_display_after’, 10, 1);
function my_latest_display_after($attr){
$skin = $attr[‘skin’];
if($skin == ‘unique_section_list’){
add_action(‘kingkongboard_latest_list_after’, ‘my_latest_list_after’, 10, 3);
}
}function my_latest_list_after($results, $config, $number){
global $wpdb;
$table = $wpdb->prefix.”kingkongboard_meta”;
$results = $wpdb->get_results(“SELECT * FROM $table WHERE board_id = ‘”.$config->bid.”‘ AND section = ‘???????’ order by date DESC limit 5 “);
return $results;
}Forum: Plugins
In reply to: [Kingkong Board] ? ??? ??? ???? ?? ??? ? ??? ??????? 1.6.1 ????? ???
?? functions.php ??? ??? ?? ???.add_filter(‘kkb_entry_validation_after’, ‘my_custom_validation’, 10, 2);
function my_custom_validation($result, $data){
if(isset($data[‘entry_section’])){
if($data[‘entry_section’] == “0”){
$result[‘status’] = “failed”;
$result[‘message’] = “??? ????? ???.”;
} else {
$result[‘status’] = “success”;
}
}
return $result;
}?? ???? ?? ??????.
Forum: Plugins
In reply to: [Kingkong Board] ????? ???? ????? ???.???? ????? ????? ???? ???.
?? ???? ???? ???? ????? ????? ??? ??? ????????.Forum: Plugins
In reply to: [Kingkong Board] ????? ???? ????? ???.??? ??? ????? ?????? ????????.
Forum: Plugins
In reply to: [Kingkong Board] ????? ???? ????? ???.???? ?? ??? ??? ????
??? ??? ????? ??? ??? ???.