Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

M@verick

Archived
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Real Name
    Maverick

M@verick's Achievements

  1. sorry :blush: I did a mistake, It works great !!! ouuups :lol:
  2. Hi Guys :D a little javascript trouble with this contrib... I have a "value" is NULL or is not an object... This is the line with the error from this function: function fillCodes() { var this_subproduct_qty = eval("document.new_product.subproduct_" + n + "_qty") any ideas? :(
  3. SORRY, Don't pay attention to my last code, } expected error gone away ;) file transfert problem... (!) Just a function missing too, when updating the coutry, states are not... ;) o:)
  4. Hi Stew ;) Under IE: I've tried to use the english language file instead of the french one, but still the same problem. I've also tried to let in all HINT define only one word (no space, no reserved characters)... just to be sure... :D no result :( I've solved under Firefox, before your answer, the characters problem and removed all of them from the french defines. And so it works... under Firefox, not under IE So, yes, some charcters are causing troubles, even under Firefox, but there is another bug somewhere. :'( PS: I will post the french package when this problem will be fixed... ;) just to be sure french defines are not responsible of this trouble... :lol:
  5. IE Version 6.0.2900.2180 I will post the french package this week ;)
  6. Hi DJmonk ;) Some troubles with IE and onMouseover="ddrivetip..... function It doesn't display them anymore. But it's ok with firefox... :-" message error: 'tipobj.style' has NULL value or isn't an objet... And credit card fields are always displayed instead of not with 2.6.5 a version... Any ideas? :rolleyes: If you want I've translated in french the new edit_orders.php language file.
  7. Hi guys thx for this great mod which I would like to use.... BUT.... :lol: Admin side looks OK but catalog side.... big problem... :( It looks like the box doesn't call application_top.php I suppose it because of this error: All functions are not recognized and they exist in my general.php... I saw on the contrib download page that Sanden had the same problem... I've searched on this thread but no response.... Any ideas? ;)
  8. Hi Guys... :D Thanx for this great mod.... :thumbsup: I would like to know if somebody did the adaptation for Categories Description v1.9 ??? And just a little error when pre-viewing the product.... ;)
  9. Hi Djmonkey this is my function, I'm using a creloaded version... //// // Output a form pull down menu function tep_draw_pull_down_menu($name, $values, $default = '', $parameters = '', $required = false) { $field = '<select name="' . tep_output_string($name) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>'; if (empty($default) && isset($GLOBALS[$name])) $default = stripslashes($GLOBALS[$name]); for ($i=0, $n=sizeof($values); $i<$n; $i++) { $field .= '<option value="' . tep_output_string($values[$i]['id']) . '"'; if ($default == $values[$i]['id']) { $field .= ' SELECTED'; } $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>'; } $field .= '</select>'; if ($required == true) $field .= TEXT_FIELD_REQUIRED; return $field; } //// Just a little bit different.... $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>'; This is my html code: <select name="update_info_payment_method"><option value="Contre Remboursement">Contre Remboursement</option><option value="Enl?vement direct au magasin">Enl?vement direct au magasin</option><option value="Paiement par mandat">Paiement par mandat</option><option value="Paiement par chèque">Paiement par chèque</option><option value="Paiement par virement bancaire">Paiement par virement bancaire</option><option value="Other">Other</option></select> <!-- <input name="update_info_payment_method" size="35" value="Paiement par ch?que" /> --> In fact, when I click on Edit Button, payment method is correctly displayed. But when I've updated my order, it displays the top of list payment method by default... I have to pay attention if I wanna re-update and need tochange it first for the correct one. Another problem... :( I've installed an OT module: subtotal without tax module <?php /* $Id: ot_total.php,v 1.7 2003/02/13 00:12:04 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ class ot_total_ht { var $title, $output; function ot_total_ht() { $this->code = 'ot_total_ht'; $this->title = MODULE_ORDER_TOTAL_HT_TOTAL_TITLE; $this->description = MODULE_ORDER_TOTAL_HT_TOTAL_DESCRIPTION; $this->enabled = ((MODULE_ORDER_TOTAL_HT_TOTAL_STATUS == 'true') ? true : false); $this->sort_order = MODULE_ORDER_TOTAL_HT_TOTAL_SORT_ORDER; $this->output = array(); } function process() { global $order, $currencies; $this->output[] = array('title' => $this->title . ':', 'text' => '<b>' . $currencies->format($order->info['totalHT'], true, $order->info['currency'], $order->info['currency_value']) . '</b>', 'value' => $order->info['totalHT']); } function check() { if (!isset($this->_check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_ORDER_TOTAL_HT_TOTAL_STATUS'"); $this->_check = tep_db_num_rows($check_query); } return $this->_check; } function keys() { return array('MODULE_ORDER_TOTAL_HT_TOTAL_STATUS', 'MODULE_ORDER_TOTAL_HT_TOTAL_SORT_ORDER'); } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Affichage du total', 'MODULE_ORDER_TOTAL_HT_TOTAL_STATUS', 'true', 'Voulez-vous montrer le total de la commande HT ?', '6', '1','tep_cfg_select_option(array(\'true\', \'false\'), ', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Ordre de tri', 'MODULE_ORDER_TOTAL_HT_TOTAL_SORT_ORDER', '4', 'Ordre de tri pour l\'affichage (Le plus petit nombre est montré en premier).', '6', '2', now())"); } function remove() { tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); } } ?> It appears during the first editing process, above Total with tax and is added when i update... So the total price is: total without tax+ total with tax..... I have to set it first to 0, it disappears after updating and the price is correct... How could it be fixed?
  10. Hi guys I've just installed Admin Access With Levels 1.6.0 but it doesn't work I'm very suprised cause I've installed the same version at my office, and .... it works.... :blink: I've copied at home, doing exactly the same process, all files in directories and executed SQL file... Login Admin page appears, I register as admin, pw: admin like explainations say and...nothing.... :( The diff between computers is OS: Win 98 at my office, Xp pro at home Using both easyphp 1.6 as apache server..... HELP ;)
×
×
  • Create New...