marcus76 Posted April 22, 2005 Posted April 22, 2005 Hi , Can someone pls give me a few pointers as to the code to make the currencies.php a hyperlink (flags are the hyperlinks) and this changes the currency across the site. Thanks Marcus
boxtel Posted April 22, 2005 Posted April 22, 2005 Hi , Can someone pls give me a few pointers as to the code to make the currencies.php a hyperlink (flags are the hyperlinks) and this changes the currency across the site. Thanks Marcus <{POST_SNAPBACK}> are you sure flags are the appropriate representation of currencies ? Treasurer MFC
marcus76 Posted April 22, 2005 Author Posted April 22, 2005 are you sure flags are the appropriate representation of currencies ? <{POST_SNAPBACK}> more specifically... flags / with currency symbols on them...US / UK / EURO
boxtel Posted April 22, 2005 Posted April 22, 2005 more specifically... flags / with currency symbols on them...US / UK / EURO <{POST_SNAPBACK}> right, then you need to extend the currencies class to hold images like the language class. to display the languages as flags I use this code in the header, you could possibly alter this to reflect the currencies after changing that class. <?php if (!isset($lng) || (isset($lng) && !is_object($lng))) { include(DIR_WS_CLASSES . 'language.php'); $lng = new language; } if (substr(basename($PHP_SELF), 0, 8) != 'checkout') { reset($lng->catalog_languages); while (list($key, $value) = each($lng->catalog_languages)) { if ($language != $value['directory'] ){ $languages_string .= '<td nowrap class="headerNavigation"> | </td> <td nowrap class="headerNavigation"><a onmouseover="window.status=\'' . $value['name'] . '\'; return true" href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'lng', 'currency', 'zx', 'azx', 'yx', 'action')) . 'lng=' . $key, $request_type) . '">' . tep_image(DIR_WS_LANGUAGES . $value['directory'] . '/images/' . $value['image'], $value['name'], ' style="vertical-align: middle" ') . '</a></td>'; } } echo $languages_string; } ?> Treasurer MFC
Recommended Posts
Archived
This topic is now archived and is closed to further replies.