This is a required update to Kirby for upgrading from AvArcade Pro v5.3.+ to v5.4.+ This is a minor update fixing the seo issue with the Popular, Newest and Random games. Step 1 Popular Games Fix Step 2 Newest Games Fix Step 3 Random Games Fix ########################################## ########################################## Step 1 - Go to /templates/kirby/cyano_mods/popular_games.php and replace all of it's contents with: '; $sql = mysql_query("SELECT * FROM ava_games WHERE published=1 ORDER BY hits desc LIMIT 5"); while($row = mysql_fetch_array($sql)) { $url = GameUrl($row['id'], $row['seo_url'], $row['category_id']); $name = shortenStr($row['name'], $template['module_max_chars']); $description = shortenStr($row['description'], 50); $game['rating'] = GenerateRating($row['rating'], 'homepage'); if ($setting['module_thumbs'] == 1) { $image_url = GameImageUrl($row['image'], $row['import'], $row['url']); $image = ''.$name.' '; } else { $image = ''; } echo '
  • '.$image.'
    '.$name.'
    '.$description.'
    '.$game['rating'].' | '.$row['hits'].' '.GAME_PLAYS.'
  • '; } echo ''; ?> ########################################## ########################################## Step 2 - Go to /templates/kirby/cyano_mods/newest_games.php and replace all of it's contents with: '; } else { $image = ''; } echo ''.$image.''; } ?> ########################################## ########################################## Step 3 - Go to /templates/kirby/cyano_mods/random_games.php and replace all of it's contents with: '; $sql = mysql_query("SELECT * FROM ava_games WHERE published=1 ORDER BY rand() desc LIMIT 12"); while($row = mysql_fetch_array($sql)) { $url = GameUrl($row['id'], $row['seo_url'], $row['category_id']); $name = shortenStr($row['name'], 20); $description = shortenStr($row['description'], 34); $game['rating'] = GenerateRating($row['rating'], 'homepage'); if ($setting['module_thumbs'] == 1) { $image_url = GameImageUrl($row['image'], $row['import'], $row['url']); $image = ''.$name.' '; } else { $image = ''; } echo '
  • '.$image.'
    '.$name.'
    '.$description.'
    '.$game['rating'].' | '.$row['hits'].' '.GAME_PLAYS.'
  • '; } echo ''; ?> ########################################## ########################################## Step 4 - Go to /templates/kirby/cyano_mods/links.php and replace all of it's contents with: '; $sql = mysql_query("SELECT * FROM ava_links WHERE sitewide=1 AND published=1 ORDER BY id desc"); while ($row = mysql_fetch_array($sql)) echo '
  • '.htmlspecialchars($row['name']).'
  • '; if ($setting['seo_on'] == 0) { echo '
  • '.MORELINKS.' >>
  • '; } else { echo '
  • '.MORELINKS.' >>
  • '; echo ''; } ?> ########################################## ########################################## If any other issues come up, contact me at sales@cyanographics.com -Mike CyanoGraphics.com