Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

catchmypixiedust

Archived
  • Posts

    78
  • Joined

  • Last visited

Everything posted by catchmypixiedust

  1. just a quick question: in the STS 4.3 user guide noted: 4.3 Placeholder for main content The main content of the page (middle of the page) is put in the $content tag, created in the file: “catalog/includes/modules/sts_inc/column_right.php”. i look into the folder of sts_inc but column_right.php nowhere to be found have i miss read? regards michael
  2. i want to install this simple contribution : Add Shopping Cart Info to Your Header but it won't works with STS 4.3 on the contribution download page there are several download that works for STS (Latest were STS Pljus) but non for STS 4.3! all i have to do is to pass the code below to sts_user_code.php BUT IT NOT WORKING FOR ME here is the code: Updated to work with STS PLUS This is just a little usercode to allow you to use this contribution in your STS layout. Add this to your includes/modules/sts_inc/sts_user_code.php file, before the ?> at the end of the file is fine. $sts->start_capture(); $productno = $cart->count_contents(); $totalprice = $currencies->format($cart->show_total()); if ($productno > 1) { echo ENTRY_HCART_CONTAINS; echo " "; echo $productno; echo " "; echo ENTRY_HCART_ITEMS; echo " "; echo " "; echo ENTRY_HCART_PRICE; echo " "; echo $totalprice; } elseif ($productno == 0) { echo ENTRY_HCART_EMPTY; } else { echo ENTRY_HCART_CONTAINS; echo " "; echo $productno; echo " "; echo ENTRY_HCART_ITEM; echo " "; echo " "; echo ENTRY_HCART_PRICE; echo " "; echo $totalprice; } $sts->stop_capture ('headcart'); Add this to your includes/languages/english.php file, before the ?> at the end of the file is fine. define('ENTRY_HCART_EMPTY', 'Your cart is empty.'); define('ENTRY_HCART_CONTAINS', 'Your cart contains:'); define('ENTRY_HCART_ITEM', 'item.'); define('ENTRY_HCART_ITEMS', 'items.'); define('ENTRY_HCART_PRICE', 'Total price:'); Thats it! Now use $headcart anywhere you want in your STS template files. please help
  3. Please forgive me, i have posted this question intended for this topic but it seems to lost somewhere in the forum so i have to double post the msg again as i am desparately need help: :( hello, please help! install sts + header tag -- works like a charm! thankyou BUT i can not figure it out how to move things around the index.php page look perfect the way i wanted when call on with STS as shown below: (FOOTER AND BANNER shown perfectly in order!) NOW, when product_info call out in STS the FOOTER AND BANNER shown INSIDE the "Add to Cart" box! as shown below: please help to bring it out much appreciate for any help michael
  4. hello, please help! install sts + header tag -- works like a charm! thankyou BUT i can not figure it out how to move things around the index.php page look perfect the way i wanted when call on with STS as shown below: (FOOTER AND BANNER shown perfectly in order!) NOW, when product_info call out in STS the FOOTER AND BANNER shown INSIDE the "Add to Cart" box! as shown below: please help to bring it out much appreciate for any help michael
  5. just install STS and all seems to work ok including HTC! beautiful! BUT (see pic below) on the PRODUCT INFO PAGE my banner and the footer is INSIDE THE "add to cart" box! how can i take it out....urr...cracking me head....please help! michael
  6. so how can i make it in such that i calculate VAT toward the end the line where it said: // Calculate main tax reduction $tod_amount = round($order->info['tax']*10)/10*$od_pc/100; <---- this line ??? $order->info['tax'] = $order->info['tax'] - $tod_amount; i think where i should make changes but not too sure how... can you help?
  7. Could anyone help pointing out the support thread for Price Sensitive Discount! just download and install this simple contribution and but the i seem not able to set it to work right (something to do with tax) eg, discount is 10% for purchase over $200, and local tax is 10% so at check out: Subtotal: $250 Discount (10%): $25 <-- suppose to be but i keep geting $27.50 Shipping: $10.00 Tax (10%): $23.50 <-- correct Total: $258.50 <-- This is correct too i have attached the ot_lev_discount.php below for any kind soul out there to help...pleasssse! <?php /* <<<<<<< ot_lev_discount.php $Id: ot_lev_discount.php,v 1.0 2002/04/08 01:13:43 hpdl Exp $ ======= $Id: ot_lev_discount.php,v 1.3 2002/09/04 22:49:11 wilt Exp $ >>>>>>> 1.3 osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ class ot_lev_discount { var $title, $output; function ot_lev_discount() { $this->code = 'ot_lev_discount'; $this->title = MODULE_LEV_DISCOUNT_TITLE; $this->description = MODULE_LEV_DISCOUNT_DESCRIPTION; $this->enabled = MODULE_LEV_DISCOUNT_STATUS; $this->sort_order = MODULE_LEV_DISCOUNT_SORT_ORDER; $this->include_shipping = MODULE_LEV_DISCOUNT_INC_SHIPPING; $this->include_tax = MODULE_LEV_DISCOUNT_INC_TAX; $this->calculate_tax = MODULE_LEV_DISCOUNT_CALC_TAX; $this->table = MODULE_LEV_DISCOUNT_TABLE; // $this->credit_class = true; $this->output = array(); } function process() { global $order, $ot_subtotal, $currencies; $od_amount = $this->calculate_credit($this->get_order_total()); if ($od_amount>0) { $this->deduction = $od_amount; $this->output[] = array('title' => $this->title . ':', 'text' => '<b>' . $currencies->format($od_amount) . '</b>', 'value' => $od_amount); $order->info['total'] = $order->info['total'] - $od_amount; if ($this->sort_order < $ot_subtotal->sort_order) { $order->info['subtotal'] = $order->info['subtotal'] - $od_amount; } } } function calculate_credit($amount) { global $order; $od_amount=0; $table_cost = split("[:,]" , MODULE_LEV_DISCOUNT_TABLE); for ($i = 0; $i < count($table_cost); $i+=2) { if ($amount >= $table_cost[$i]) { $od_pc = $table_cost[$i+1]; } } // Calculate tax reduction if necessary if($this->calculate_tax == 'true') { // Calculate main tax reduction $tod_amount = round($order->info['tax']*10)/10*$od_pc/100; $order->info['tax'] = $order->info['tax'] - $tod_amount; // Calculate tax group deductions reset($order->info['tax_groups']); while (list($key, $value) = each($order->info['tax_groups'])) { $god_amount = round($value*10)/10*$od_pc/100; $order->info['tax_groups'][$key] = $order->info['tax_groups'][$key] - $god_amount; } } $od_amount = round($amount*10)/10*$od_pc/100; $od_amount = $od_amount + $tod_amount; return $od_amount; } function get_order_total() { global $order, $cart; $order_total = $order->info['total']; // Check if gift voucher is in cart and adjust total $products = $cart->get_products(); for ($i=0; $i<sizeof($products); $i++) { $t_prid = tep_get_prid($products[$i]['id']); $gv_query = tep_db_query("select products_price, products_tax_class_id, products_model from " . TABLE_PRODUCTS . " where products_id = '" . $t_prid . "'"); $gv_result = tep_db_fetch_array($gv_query); if (ereg('^GIFT', addslashes($gv_result['products_model']))) { $qty = $cart->get_quantity($t_prid); $products_tax = tep_get_tax_rate($gv_result['products_tax_class_id']); if ($this->include_tax =='false') { $gv_amount = $gv_result['products_price'] * $qty; } else { $gv_amount = ($gv_result['products_price'] + tep_calculate_tax($gv_result['products_price'],$products_tax)) * $qty; } $order_total=$order_total - $gv_amount; } } if ($this->include_tax == 'false') $order_total=$order_total-$order->info['tax']; if ($this->include_shipping == 'false') $order_total=$order_total-$order->info['shipping_cost']; return $order_total; } function check() { if (!isset($this->check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_LEV_DISCOUNT_STATUS'"); $this->check = tep_db_num_rows($check_query); } return $this->check; } function keys() { return array('MODULE_LEV_DISCOUNT_STATUS', 'MODULE_LEV_DISCOUNT_SORT_ORDER','MODULE_LEV_DISCOUNT_TABLE', 'MODULE_LEV_DISCOUNT_INC_SHIPPING', 'MODULE_LEV_DISCOUNT_INC_TAX','MODULE_LEV_DISCOUNT_CALC_TAX'); } 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 ('Display Total', 'MODULE_LEV_DISCOUNT_STATUS', 'true', 'Do you want to enable the Order Discount?', '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 ('Sort Order', 'MODULE_LEV_DISCOUNT_SORT_ORDER', '999', 'Sort order of display.', '6', '2', now())"); 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 ('Include Shipping', 'MODULE_LEV_DISCOUNT_INC_SHIPPING', 'true', 'Include Shipping in calculation', '6', '3', '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, set_function ,date_added) values ('Include Tax', 'MODULE_LEV_DISCOUNT_INC_TAX', 'true', 'Include Tax in calculation.', '6', '4','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, set_function ,date_added) values ('Calculate Tax', 'MODULE_LEV_DISCOUNT_CALC_TAX', 'false', 'Re-calculate Tax on discounted amount.', '6', '5','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 ('Discount Percentage', 'MODULE_LEV_DISCOUNT_TABLE', '100:7.5,250:10,500:12.5,1000:15', 'Set the price breaks and discount percentages', '6', '6', now())"); } function remove() { $keys = ''; $keys_array = $this->keys(); for ($i=0; $i<sizeof($keys_array); $i++) { $keys .= "'" . $keys_array[$i] . "',"; } $keys = substr($keys, 0, -1); tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in (" . $keys . ")"); } } ?> THE AREA IN RED IS WHERE THE HACK SHOULD BE...i think!
  8. oops! amanda... my sincere apology! michael
  9. hello, is the a contribution that able to show eg, below (tax exempt for international customers) Sub-total: $100.00 Coupon discount: -$10.00 Shipping: $10.00 Insurance: $10.00 Duty Free (10% OFF): -$11.00 -> If local customer normal tax apply! So this line should be $11.00 Total: $99.00 please help! thanks michael
  10. hello, is this thread still support? i have installed this contribution and have had some issues with regarding to setting under admin... what i want to set up is: "Where the insured value of the article is not more than $100, a fee of $7.50. Where the insured value exceeds $100, a fee of $7.50 for the first $100 plus $2 for every additional $100 or portion thereof" please help as i have tried every possiple way to change the setting but it does did not work out! maybe the code need to be alter...but i am light years away from php please help i am desparate michael
  11. CodeGen please! i have the same problem and no matter how i tried...can't seem to get it fix! spend hoursssss on this forums..! PLEASE HELP ANY ONE! error: at checkout_payment.php "The coupon code you have entered is not valid." cheers
  12. does anyone know if there is a contribution that allow me to give discount on the SUBTOTAL in percentage eg, duty free for international customer? have tried to search but cannot find! cheers
  13. well well well, php coding still light years away for me! better leave this contribution for now UNLESS someone out there with a heart of gold willing to show me how to cut and paste! cheers
  14. hello, i wanted to install this great contribution BUT have one concern: I have had other contributions added to my cart and the product_listing.php had been changed drastically (contribution i have included: B2B suite, Master Product). The last instruction on the "install new_install" said: --------------------------------------------------------------------------- In filenames.php change define('FILENAME_PRODUCT_LISTING', 'product_listing.php'); to define('FILENAME_PRODUCT_LISTING', 'product_listing_col.php'); --------------------------------------------------------------------------- if i changed the above line, my question: WILL IT HAVE ANY AFFECT ON MY CART? my product_listing.php look like this: please advice before i continue! thanks in advance
  15. hello kgt, do you know where in msql i can increase packet in msql client! the instruction is: my knowledge of phpmyadmin is ONLY run sql LOL! cheers
  16. what the hell! i am VERY SURE that my problem got nothing to do with this contribution BUT after i installed this contrubition...play with it for a few minutes THEN got this error: Warning: mysql_connect(): Lost connection to MySQL server during query in /home/.berthram/voteforaustralia/voteforaustralia.com/catalog/includes/functions/database.php on line 19 Unable to connect to database server! urrr! the contrubition make NO changes to the database.php...ANY ONE EXPERICE SAME? or can help out... both in catalog and admin got same error! meanwhile, i have tried to contact my host to see if the server down cheers!
  17. shopping_cart.php: i want to set slave product as attributes/options for Master Product and the push them to show in an array in shopping cart! ie, MASTER 1 - attributes/options 1 x 1 pcs $10 - attributes/options 2 x 1 pcs $10 - attributes/options 3 x 1 pcs $10 - attributes/options 4 x 1 pcs $10 ... - attributes/options 5 x 1 pcs $10 could you please help me with the code! cheers
  18. any one have problem with there image after installing STS all my shop pics gone...gone...gone...! when add new product --> pics won't load! help!
  19. figure it out: just comment out the SELECT_QUANTITY to remove the unwanted quantity box! just check the admin section and something missing when installignt MP? 1. click add master product: THERE IS A 'Product Quantity:' box where you can add quantity to the cart BUT 2. when click on add new product button: there are no 'Product Quantity' any where when search in each of the panel namely (Name/Price/Description/Images) HAVE I MISSED SOME THING? CAN SOMEONE HELP ME WITH A SCREEN SHOT ON THIS PAGE! cheers
  20. i have just added the MP contribution, but i think something ISN'T RIGHT please see screen shot below: First issue: there is a TEXT_QUANTITY + Qty drop down box next to it --> how to remove these as i want Master product that have Slave attached, ONLY slave product allow to have Qty drop down box where customer able to select Qty eg, Slave 1, Slave 2, Slave 3 etc and at the end all they need to do is hit ADD TO CART button! similar to screen shot below: Second issue: When customer view cart. is there a way for the shopping cart to show: - MASTER 1 - slave a - slave b - slave c... - Master 2 - slave d - slave e - slave f ... currently when customer hit VIEW CART --> all slave products SHOW UP and customer do not know which slave belong to which master! Thanks in advance
  21. my shop break into pieces when installing up to the stage where - Open catalog/includes/header.php add at the beginning: // START STS 4.1 $sts->restart_capture ('applicationtop2header'); // END STS 4.1 check it out at www.voteforaustralia.com/catalog/index.php does this have anything to do with other contributions i have installed (b2bsuite/header tag controller/sort attributes) please help! michael
  22. hello Jack, hello Jack, coiuld not fit my admin/categories.php on the support threat...hope your don't mind! i send you an email instead! please help as the problem a little complicated! michael
  23. just install header tag controller...everything seem to work wonderfull BUT when i want to add new product, all the boxes are there for your to fill in but i can not find the THREE (3) boxes that said: Title tag: Meta decription: Meta Keywords: EVERYTHING ELSE WORK OK! no broken link no errors...etc have i miss something?
×
×
  • Create New...