Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

djbastard

Archived
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    Jochem

djbastard's Achievements

  1. How to use specials with Multi Stores Multiple Shopping System? Currently the specials are showed in all shops. If I create special 1 for shop 1 and special 2 for shop 2 then both shops have 2 x the same special product but with different prices (price 1 for shop 1 and price 2 for shop 2). Does anyone know how to integrate/fix this?
  2. thnx m8, Stupid that i haven't seen that myself :blink: (bangin head to the wall) I made some changes and fixes to the package and released it under "Get 1 free 1.1b" tested and it works like a charm. Greetz
  3. Hi Great contribution so far but i stumbled upon an error :( in checkout_process.php i get: Parse error: syntax error, unexpected '[', expecting ')' in /.../..../public_html/dev/checkout_process.php on line 237 Line 222 until 246 - line 237 is bold $products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n"; // start Get 1 free // If this product qualifies for free product(s) add the free products // if (is_array ($free_product = $this->get1free ($products_id))) { if (is_array ($free_product = $cart->get1free ($products_id))) { // Update products_ordered (for bestsellers list) // Comment out the next line if you don't want free products in the bestseller list tep_db_query("update " . TABLE_PRODUCTS . " set products_ordered = products_ordered + " . sprintf('%d', $free_product['quantity']) . " where products_id = '" . tep_get_prid($free_product['id']) . "'"); $sql_data_array = array('orders_id' => $insert_id, 'products_id' => $free_product['id'], 'products_model' => $free_product['model'], [b]'products_name' => free_product['name'],[/b] 'products_price' => 0, 'final_price' => 0, 'products_tax' => '', 'products_quantity' => $free_product['quantity'] ); tep_db_perform(TABLE_ORDERS_PRODUCTS, $sql_data_array); $total_weight += ($free_product['quantity'] * $free_product['weight']); } // end Get 1 free } does anyone know a fix for this?
  4. I need help :S I installed the contribution and ran into a little problem the shop side is oke and shows up correctly but when i go into the admin and then go to catalog (admin/categories.php?selected_box=catalog) it says: Parse error: syntax error, unexpected T_ELSE in /home/realwear/public_html/shop/admin/categories.php on line 949. when i open up categories.php then these are the lines NOTE: } else { = line 949 I have the multi stores & big images contribution installed can anyone help me with this??? I need it much because i only have 1 page in Google :S thnx in advance
  5. Hi There I just installed the multi shop contribution. When i go to /catalog/ with define('TABLE_CONFIGURATION', 'configuration') all works oke then i copy that folder and rename it /catalog_new/. when i try to change the database table to define('TABLE_CONFIGURATION', 'configuration_new') then my whole layout is messed up, how come???? Greetz,
×
×
  • Create New...