Am running 6.0.0005
Right now the photo gallery block displays the latest photos in the photo gallery, but I would like to display the top photos. Ive tried editing this section of code in the PageCompTopPhotosContent function in ~/templates/tmpl_uni/scripts/index.php:
if ( $_GET['Mode_p'] == 'rand' or
$_GET['Mode_p'] == 'last' or
$_GET['Mode_p'] == 'top' )
$mode = $_GET['Mode_p'];
else
$mode = 'top';
But that change is not being reflected on the site (http://play.grovepinesconnect.com/index.php). Is this the right code to change?
if( $page < 1 or $mode == 'last' )
you have to change this to..