msfarhan
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [World Cup Predictor] Matches not showingThank you to both of you.
Can you please mention the Timezone of Kickoff time of the Matches.
Forum: Plugins
In reply to: [World Cup Predictor] No option for Penalty Score on Knockout Stageupdate:
after adding “predict_penalties=1” to the code. Penalty box is showing.
But how can I configure so that Penalty Box only appear when user predict draw in knockout stage.
Forum: Plugins
In reply to: [World Cup Predictor] Users Ranking Changing Notificationok.
Forum: Plugins
In reply to: [World Cup Predictor] Ranking Players with Same PointYes. Thank you for the support.
Forum: Plugins
In reply to: [World Cup Predictor] Ranking Players with Same PointI just tried this code mention in your link and it worked.
$pos = 1; $oldTotal = -1; foreach ($result as $row) { if($oldTotal > $row->total){ $pos++; } if ($row->ID == $curr_user_id) { $style = "style=\"$highlight\""; } else { $style = 'class="wcup-row"'; } $output .= "<tr $style><td class='wcup-user'>".($avatar ? get_avatar( $row->ID, '16', '', $row->display_name ) : '').' '.$pos . '. ' . $row->display_name."</td><td class='wcup-points'>$row->total</td><td class='wcup-review'>"; $oldTotal = $row->total; if (get_option($this->prefix.'player_predictions')) { $output .= "<a class='review-link' title='".__('Predictions', WCP_TD)."' href=\"".get_option($this->prefix.'player_predictions')."&wcp=predictions&user=".$row->ID."\"><img src='". WP_PLUGIN_URL."/".WCP_TD ."/images/predictions.png' /></a>"; } $output .= "</td></tr>" . PHP_EOL; }see this page
Forum: Plugins
In reply to: [World Cup Predictor] Ranking Players with Same PointNo I dont have that knowledge of PHP but if you can guide me a little i can solve the issue.
Forum: Plugins
In reply to: [World Cup Predictor] Ranking Players with Same Point
Viewing 7 replies - 1 through 7 (of 7 total)