Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/22/2014 in all areas

  1. Go to: AdminCP > System Settings > Settings > System > Security and Privacy > Remove the ACP link from the community
    1 point
  2. Your hooks folder need to be set to permission 777.
    1 point
  3. Yes upload them in the uploads folder and name them as I said in my other post. if the member is 0 they will get image nitrox20.jpg if 5 nitrox25.jpg if -5 nitrox2-5.jpg and so forth. And how do you intend to update the members points? Through the database using phpmyadmin? It would be easier if you created the cpf and used a default value of 0 and not allowing members to edit it. Then you could edit it by editing the member profile and using the method I suggested here
    1 point
  4. Ok just create 11 images for the graphs called nitrox2-5.jpg thru nitrox25.jpg. there will be 1 image for each possible number from -5 through +5. Then edit userinfopane template and place this code anywhere you want. Maybe above the posts. <php>$nitrox2 = ipsRegistry::DB()->buildAndFetch( array( 'select' => 'nitrox2_points', 'from' => 'members', 'where' => 'member_id=' . $author['member_id']) );</php> <li><img src="{$this->settings['upload_url']}/nitrox2{$nitrox2['nitrox2_points']}.jpg"></li>
    1 point
  5. If you have not altered the member's table yet then you should do that first. alter TABLE members add column nitrox2_points tinyint(3) default 0; Or Just create it in the cpf then you will have to add the amount to the field manually for each member. I think this second method is easier to show to the userinfo and profile screens.
    1 point
  6. First what table are you adding the field Nitrox2 points ? How can 0 be half full if 5 is full? ) should be empty.
    1 point
  7. That is correct. Do you have multiple languages on your forum? You can force the , by editing this file adminsourcesclassesclass_localization.php using ftp or file manager. find public function formatNumber( $number, $places=0 ) { return is_numeric( $number ) ? str_replace( 'x', $this->local_data['thousands_sep'], number_format( $number, $places, $this->local_data['decimal_point'], 'x' ) ) : 0; } change to public function formatNumber( $number, $places=0 ) { return is_numeric( $number ) ? str_replace( 'x', ',', number_format( $number, $places, $this->local_data['decimal_point'], 'x' ) ) : 0; }
    1 point
  8. In the boardindextemplate show us in a code tag in a spoiler tag what is between this line <div id='board_stats'> and this line <div id='board_statistics' class='statistics clearfix'>
    1 point
  9. What are you talking about? The sidebar that is on WF? Do you use a sidebar? Is it the same one? Or are you talking about something else? SHOW A PICTURE OF YOUR BOARD!!!!
    1 point
  10. Look in the skin template global templates > userinfopane find the word posts. Default is this <if test="postCount:|:$author['member_id']"> <li class='post_count desc lighter'> {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} </li> </if> The important part is this {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) ) it adds the commas
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...