Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

hankster6911

Archived
  • Posts

    43
  • Joined

  • Last visited

Everything posted by hankster6911

  1. I got the taxes all figured out, still a no go with the shipping adding the handling fee, sure seems that should be simple but I do not know enough about codes to work with it. I have not set up easy populate and most likely wont on this site I am doing. I am pretty much at a standstill right now as I broke my ankle and will be having surgery next week. I thought I had at least had the shipping working properly but a test of sending a package to england came back with an error stating Rating Service generic error. Also the shipping method in checkout is showing randomly now instead of always since I have installed gift vouchers, sigh. Wendy
  2. Not sure what the problem was but I reloaded the files onto the server I was creating it for, had it on a demo, and it now works Wendy
  3. Setting it to true or false does not make a difference in the outcome of the order, my order number is still 0 example ------------------------------------------------------ Order Number: 0 Detailed Invoice: http://www.xxxxx/account_history_info.php?order_id=0 Date Ordered: Saturday 04 November, 2006 And the whole order does not show up under my customer/orders in the admin. Set to false, yes the voucher does not get queried it does when set to true but either way the order is still 0 and not registering in my store admin as being placed. Wendy
  4. I've installed CCGV on two sites, one is working correctly so far thru my testing the other I am having a little bit of an issue when placing an order. When I place the order no order number is produced, it is a 0, the purchased gift certificate is placed in the query, all emails are sent but the order does not show up in my admin under customers/orders. This is with an order with just the voucher or an order with the voucher and other products. I am not really thinking this is a CCGV issue unless I missed something in the install but perhaps more of another mod conflicting, just thought I would start here and see if this has been heard of. Thanks Wendy
  5. I do not need to track manufactuers, so I have that set to no in admin. Any way to get the manufacture drop down box removed from the actual product in the store? I would like to remove the manufactuer drop down box below. Available Options: Color: First select Colorbrown Size: Next select Size Designer: Second Wendy
  6. I have Canada_Post_3_7_rev1 installed. I have set a flat handling fee of $2.00 on the Canada Post site but it is not calculating into the shipping. Anyway to get a flat $2.00 fee added to the shipping cost? Thanks for reading wendy
  7. Thanks so much, I missed that when I was trying to read the forum, its been so slow lately that it takes forever for the pages to load. I am sure I will be back as I am installing QT Pro and having abit of a probelm merging the product info page. Wendy
  8. I have my settings like so Heading Image Width 57 Heading Image Height 40 Subcategory Image Width 100 Subcategory Image Height 57 Small Image Width 142 Small Image Height 189 All Products Image Width 100 All Products Image Height 80 Calculate Image Size true Image Required true Show All MorePics on Product Info page false Group parent image with sub-images false Use SMALL_IMAGE_ Restrictions false Restrict parent image size true Table Alignment center Table Location below Number of Columns 3 Number of Rows 2 My problem is that when you click the click to enlarge link to view the other pictures, the pop up window resizes very nicely to the actual picture and no one can see the arrows(in my case,text) below the image so they do not know that they can view more of the same pic. Any suggestions? Wendy
  9. I just figured it out, it was an error in my general.php Great contrib thanks so much! Wendy
  10. I've just installed this contribution and am getting negative quantities in stock using these options Check stock level true Subtract stock true Allow Checkout false Mark product out of stock *** Stock Re-order level 5 Product Info Attribute Display Plugin multiple_dropdowns Show Out of Stock Attributes False Mark Out of Stock Attributes Right Display Out of Stock Message Line True Prevent Adding Out of Stock to Cart True I get no messages in cart and I can buy as many products as I wish with the stock level not being checked, they just show up as a negative number in the low stock inventory report. Any help would be appreciated Wendy
  11. Richard did you ever get the handling charged figured out? I have ca post set to charge a specific price of flat rate but it is not adding it Do you find your gst and pst taxes come out accurate? Wendy
  12. Sorry here it is http:/www.babeefunk.com/shop This is the first oscommerce store I am setting up so be kind :) Wendy
  13. Just tried the new install I now get this Header Status:: HTTP/1.1 404 Not Found Explain Code Where as before I got this 301 Moved Permanently Guess I should have left well enough alone huh? And like shpy above seo gives me 301 and 200 Wendy
  14. I've gone from grey to bald working on contribs:) You have not by chance worked on the super contact us and anti spam contact us forms have you. I gave up on adding them both and settled for less spammers then a pretty contact us page :) Wendy
  15. Oops didn't mean to tell you all those times, but apparently the server here is having a few hiccups. Wendy
  16. Richard I figured it out, it had nothing to do with the script but actually at Canadian Post. I had US packages to be sent either expedited business or small packet. So what it was tellng me was I could send the items for $16.00 business or $32.00 small packet (in 4 boxes) LOL I removed the small packet chocie and now it states all my goods can go in the one box. Wendy
  17. Richard I figured it out, it had nothing to do with the script but actually at Canadian Post. I had US packages to be sent either expedited business or small packet. So what it was tellng me was I could send the items for $16.00 business or $32.00 small packet (in 4 boxes) LOL I removed the small packet chocie and now it states all my goods can go in the one box. Wendy
  18. Is it possible to remove this text in checkout Canada Post (4 box(es) to be shipped) No matter what I do that is wrong. The box sizes that are set should allow this order to go in one of my boxes I have set up not need 4! The shipping price is correct so if I could just remove that text all should be okay. I've try several ways but my php isn't as good as I would like. This is the are that needs changing // removed product name being sent to canada post to as some characters will cause Cp to result in an error & % and others in the product name // $this->_addItem ($products_array[$i][quantity], $products_array[$i][final_price], $products_array[$i][weight], $products_array[$i][length], $products_array[$i][width], $products_array[$i][height], $products_array[$i][name], $products_array[$i][ready_to_ship], $products_array[$i][dim_type], $products_array[$i][weight_type]); $this->_addItem ($products_array[$i][quantity], $products_array[$i][final_price], $products_array[$i][weight], $products_array[$i][length], $products_array[$i][width], $products_array[$i][height], 'online_product', $products_array[$i][ready_to_ship], $products_array[$i][dim_type], $products_array[$i][weight_type]); $canadapostQuote = $this->_canadapostGetQuote(); if ( (is_array($canadapostQuote)) && (sizeof($canadapostQuote) > 0) ) { $this->quotes = array('id' => $this->code, 'module' => $this->title . ' (' . $this->boxCount . MODULE_SHIPPING_PACKAGING_RESULTS . ')'); $methods = array(); for ($i=0; $i<sizeof($canadapostQuote); $i++) { list($type, $cost) = each($canadapostQuote[$i]); if ( $this->cp_oniline_handling == true) { if ( $method == '' || $method == $type ) { $methods[] = array('id' => $type, 'title' => $type, 'cost' => $cost + $this->handling_cp); } } else { if ( $method == '' || $method == $type ) { $methods[] = array('id' => $type, 'title' => $type, 'cost' => (SHIPPING_HANDLING + $cost)); } } } if ($this->tax_class > 0) { $this->quotes['tax'] = tep_get_tax_rate($this->tax_class, $order->delivery['country']['id'], $order->delivery['zone_id']); } $this->quotes['methods'] = $methods; } else { if ( $canadapostQuote != false ) { $errmsg = $canadapostQuote; } else { $errmsg = 'An unknown error occured with the canadapost shipping calculations.'; } $errmsg .= '<br>If you prefer to use canadapost as your shipping method, please contact the '.STORE_NAME.' via <a href="mailto:'.STORE_OWNER_EMAIL_ADDRESS.'"><u>Email</U></a>.'; $this->quotes = array('module' => $this->title, 'error' => $errmsg); } The "module shipping package results" is what is telling the code 4 boxs so I would just like to remove that text. Any suggestions? Wendy
  19. I've also installed this and the problem I have is that it wants to put every item in its own box. I had the owner of the store set it up with ca post, I just did the oscommerce end. Does anyone know which end is wrong here that it puts everything in it own box. Does entering the l x h x w in the admin/products determine how many boxes the items go in? Wendy
  20. I installed both Anti Spambot Tell A Friend and anti_spambot_contact_us_1.2. All seem to go well and it works great, thank you! The only issue I have is that in my admin panel of the Tell A Friend it is blank just has the header- title value action but nothing else. So could not change the length of code if I wanted to. Wendy
  21. I can manually run site monitor with great results, I am new to cron jobs but I tried to set it up and this was the result I got. Status: 404 X-Powered-By: PHP/4.4.2 Content-type: text/html No input file specified. This is the command I used php /home/xxxx/public_html/catalog/xxxx/sitemonitor.php Since I am unfamiliar with cronjobs I am not sure this error No input file specified is on my side in the cron job or I need to set something in the php files. Thank you Wendy
  22. Your looking for this in your stlyesheet, I believe TD.pageHeading, DIV.pageHeading { font-family: Verdana, Arial, sans-serif; font-size: 14px; font-weight: bold; color: #9a9a9a; Wendy
×
×
  • Create New...