PDA

View Full Version : Hidden predictions



Sjf0464
09-11-2016, 01:58 PM
Hi,

just a a quick question. Is there a way to hide a players Predictions until game started, like the hidden in championship.

regards

kostas
10-11-2016, 09:28 AM
Hello,
you could add some code in the file <joomla directory>/components/com_masterleaguepro/views/playerprediction/tmpl/default.php

the following line should be around line 173


<td><?php echo $item->home_prediction."-".$item->away_prediction; ?></td>


you should do something like that


<?php
if( $item->match_start_time <= date("Y-m-d H:i:s") ){
?>
<td><?php echo $item->home_prediction."-".$item->away_prediction; ?></td>
<?php
}else{
echo "hidden";
}
?>


note that this code was not tested , please take backup of the file you are about to change, so you can restore it. We will consider in future updates of the component to add this functionality as optional (admin would be able to chose if he want to hide the user predictions until the game starts.

Best Regards

Sjf0464
19-12-2016, 04:09 PM
Hi,
I tried changing the code for this but it didn't work. Got the word Hidden a number of times above the predictions. Thanks for taking a look.
Regards

kostas
20-12-2016, 09:24 AM
Hello sorry the code had a mistake and the text hidden was not an element of the table try using this one



<?php
if( $item->match_start_time <= date("Y-m-d H:i:s") ){
?>
<td><?php echo $item->home_prediction."-".$item->away_prediction; ?></td>
<?php
}else{
echo "<td>hidden</td>";
}
?>

Sjf0464
06-01-2017, 04:19 PM
Hi,
I have inserted the code and tested, all works great, many thanks for your help, regards