Quote Originally Posted by testuser View Post
Language Header Bug Fix:

Replace tpl_languages header.php in the acadame templates folder, sideboxes subfolder with the following:

Code:
<?php
/**
 * Acadame Top Box Template
 *
 * @package templateSystem
 * @copyright Copyright 2007 iChoze Internet Solutions http://ichoze.com
 * @copyright Portions Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_languages.php 2982 2007-09-02 testuser $
 */
  $content = "";
  $content .= '<div id="lang_header" class="topBox centeredContent">';
  $lng_cnt = 0;
  $content .= 'Languages:<br />';
  while (list($key, $value) = each($lng->catalog_languages)) {
    $content .= '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('language', 'currency')) . 'language=' . $key, $request_type) . '">' . zen_image(DIR_WS_LANGUAGES .  $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a>&nbsp;&nbsp;';
    $lng_cnt ++;
  }
$content .= '</div>';
?>
Worked like a charm, thanks!