In the file, /includes/templates/[CUSTOM]/common/tpl_header.php
replace...
require(DIR_WS_MODULES . 'header_currencies.php');
with...
require(DIR_WS_MODULES . zen_get_module_directory('header_currencies.php'));
You can see an example at my store: http://www.serahsonline.com
To get the drop-down, I replaced everything in /includes/templates/templates_default/common/tpl_header_currencies.php with the following code:
$content = "";
$content .= zen_draw_form('currencies_form', zen_href_link(basename(ereg_replace('.php','', $PHP_SELF)), '', $request_type, false), 'get');
$content .= zen_draw_pull_down_menu('currency', $currencies_array, $_SESSION['currency'], 'onchange="this.form.submit();"') . $hidden_get_variables . zen_hide_session_id();
$content .= '</form>';
echo $content;
Bookmarks