Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Get-Wireless 2

Pioneers
  • Posts

    317
  • Joined

  • Last visited

Everything posted by Get-Wireless 2

  1. Nothing, I jus wasnt sure if the left side of drop down menu was supposed to be in line with the left side of the box for product quantity and product model. Just need to fix my remove image box but thats related to more mics so will post on that thread. Cheers bud ur a star :)
  2. Thanks Surfalot, I used ultra edit, to find ure //Bof Availability in the files to compare. The reason I did that and not look for differences because I have a lot of mods on my site and it would of taken me an age to sort what to change. It now seems to work in admin. But doesnt quite look right tho that just maybe me. Here is a screen shot and would appreciate your input on how it looks
  3. Hi Surfalot, I have installed this contrib and every thing went fine until I went to a product in the admin side to to set an availabilty option to a product. I get the following error message. // BOF: Availability $availability_query = tep_db_query("select * from availability where language_id = '" . $languages_id . "'"); $availability_array = array(); while ($availability_tmp = tep_db_fetch_array($availability_query)) { $availability_array[] = array( 'id' => $availability_tmp['availability_id'], 'text' => $availability_tmp['availability_name']); } echo ' ' . tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . 'One or more Availability Message: ' . tep_draw_pull_down_menu('availability_id_in_stock', $availability_array, (!empty($pInfo->availability_id_in_stock)?$pInfo->availability_id_in_stock:1)) . ' '.TEXT_MANAGE_AVAIL_OPTIONS.'' . ' ' . tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . 'Zero stock Availability Message: ' . tep_draw_pull_down_menu('availability_id_out_of_stock', $availability_array, (!empty($pInfo->availability_id_out_of_stock)?$pInfo->availability_id_out_of_stock:2)) . ' '.TEXT_MANAGE_AVAIL_OPTIONS.''; // EOF: Availability I have been over the admin\catagories.php file several times to make the changes. There are 5 changes in that file that I can see. However I do have other contribs installed like more pics 6.2 I think I successfuly merged your additions into my admin\catagories.php If I upload your version of admin\catagories.php from the files to compare folder then it works fine but kills off some of my other contribs Here are my lines in admin\catagories.php Line 227 $sql_data_array = array('products_quantity' => tep_db_prepare_input($HTTP_POST_VARS['products_quantity']), // BOF: Availability 'availability_id_in_stock' => tep_db_prepare_input($HTTP_POST_VARS['availability_id_in_stock']), 'availability_id_out_of_stock' => tep_db_prepare_input($HTTP_POST_VARS['availability_id_out_of_stock']), // EOF: Availability 'products_model' => tep_db_prepare_input($HTTP_POST_VARS['products_model']), Line 394 // BOF: More Pics 6 Added: , products_subimage1, products_subimage2, products_subimage3, products_subimage4, products_subimage5, products_subimage6 -AND- , '" . tep_db_input($product['products_subimage1']) . "', '" . tep_db_input($product['products_subimage2']) . "', '" . tep_db_input($product['products_subimage3']) . "', '" . tep_db_input($product['products_subimage4']) . "', '" . tep_db_input($product['products_subimage5']) . "', '" . tep_db_input($product['products_subimage6']) . "' // BOF: Availability: Added: , availability_id_in_stock, availability_id_out_of_stock --and-- , '" . tep_db_input($product['availability_id_in_stock']) . "', '" . tep_db_input($product['availability_id_out_of_stock']) . "' tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, availability_id_in_stock, availability_id_out_of_stock, products_model, products_image, products_subimage1, products_subimage2, products_subimage3, products_subimage4, products_subimage5, products_subimage6, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values ('" . tep_db_input($product['products_quantity']) . "', '" . tep_db_input($product['availability_id_in_stock']) . "', '" . tep_db_input($product['availability_id_out_of_stock']) . "', '" . tep_db_input($product['products_model']) . "', '" . tep_db_input($product['products_image']) . "', '" . tep_db_input($product['products_subimage1']) . "', '" . tep_db_input($product['products_subimage2']) . "', '" . tep_db_input($product['products_subimage3']) . "', '" . tep_db_input($product['products_subimage4']) . "', '" . tep_db_input($product['products_subimage5']) . "', '" . tep_db_input($product['products_subimage6']) . "', '" . tep_db_input($product['products_price']) . "', now(), '" . tep_db_input($product['products_date_available']) . "', '" . tep_db_input($product['products_weight']) . "', '0', '" . (int)$product['products_tax_class_id'] . "', '" . (int)$product['manufacturers_id'] . "')"); // EOF: More Pics 6 // EOF: Availability $dup_products_id = tep_db_insert_id(); Line 550 'products_date_available' => '', // BOF: Availability 'availability_id_in_stock' => '', 'availability_id_out_of_stock' => '', // EOF: Availability 'products_status' => '', Line 564 // +Randelia Custom_META_Tags_Per_Item // BOF: Availability: Added: , p.availability_id_in_stock, p.availability_id_out_of_stock $product_query = tep_db_query("select pd.products_name, pd.products_description, p.availability_id_in_stock, p.availability_id_out_of_stock, pd.products_url, pd.products_keywords, pd.products_metadescription, pd.products_pagetitle, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_subimage1, p.products_subimage2, p.products_subimage3, p.products_subimage4, p.products_subimage5, p.products_subimage6, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); // EOF: More Pics 6 // EOF: Availability // -Randelia Custom_META_Tags_Per_Item Line 807 <td class="main"><?php echo TEXT_PRODUCTS_QUANTITY; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_quantity', $pInfo->products_quantity); ?></td> // BOF: Availability $availability_query = tep_db_query("select * from availability where language_id = '" . $languages_id . "'"); $availability_array = array(); while ($availability_tmp = tep_db_fetch_array($availability_query)) { $availability_array[] = array( 'id' => $availability_tmp['availability_id'], 'text' => $availability_tmp['availability_name']); } echo '<br>' . tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . 'One or more Availability Message: ' . tep_draw_pull_down_menu('availability_id_in_stock', $availability_array, (!empty($pInfo->availability_id_in_stock)?$pInfo->availability_id_in_stock:1)) . ' <a href="' . tep_href_link(FILENAME_AVAILABILITY_OPTIONS) . '">'.TEXT_MANAGE_AVAIL_OPTIONS.'</a>' . '<br>' . tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . 'Zero stock Availability Message: ' . tep_draw_pull_down_menu('availability_id_out_of_stock', $availability_array, (!empty($pInfo->availability_id_out_of_stock)?$pInfo->availability_id_out_of_stock:2)) . ' <a href="' . tep_href_link(FILENAME_AVAILABILITY_OPTIONS) . '">'.TEXT_MANAGE_AVAIL_OPTIONS.'</a>'; // EOF: Availability </tr> <tr> In the above, on the lines after your // EOF: Availability you have ?></td> whereas my file doesnt have that I would appreciate any help you can offer to remedy this. Regards Shaun
  4. I have just installed Version 1.3. Everything looks ok but the drop down menu in admin is empty, I deleted all the entries in localization and created a few new ones as posted by scanditan but that hasnt helped. Can anyone suggest away to fix this?
  5. Thanks Chris your a star, my link is displayed properly in the emails sent out now :) I was missing define('HTTP_CATALOG_SERVER', 'http://www.get-wireless.co.uk'); It was actualy define('HTTP_CATALOG_SERVER', ''); Cheers your a star :D
  6. Hi Chris, thanks for the fixes to style sheet they work great now, Also if you dont mind I would like to try and get the links to work. Might aswell since they are in the email. If its gonna be too much hassle tho it doesnt matter. I will take a look at the other issues I have with my emails and check the files you mentioned. Kind Regards Shaun
  7. I have now added the contrib to make the emails in html format. So the url to the order works on the order process email At first it didnt include the rm tracking info so I added $email .= $notify_rm; // added rm_track_trace To the catalog/checkout_process.php file and its now there, However its still not clickable. Sorry but my php is very limited. What do I need to do to get the RM link to work? Regards Shaun Also off topic but with regards to my emails being sent The order process that is sent when a customer makes a purchase has Detailed Invoice: http://get-wireless.co.uk/dev/account_hist...hp?order_id=162 Yet the order update email on has Detailed Invoice: /dev/account_history_info.php?order_id=162 Not sure if this will help?
  8. I know its not this contrib, I have had it for a while now. Just ones of those annoying little niggles I have never got round to fixing. I will take a look at the other contrib you mentioned. Thanks In the instructions it says However since my store is heavily modded I dont have that that exact code mine was. ?> </table></td> </tr> </table></td> </tr> I have played about a bit with the code and got the info box at the bottom now as it should be but when I click close there is still a gap. this can be lived with but would be nice to get rid of it. Also the text goes outside the box, This is probably down to my <table> issue but cant seem to fix it. Here is my current code <?php $statuses_query = tep_db_query("select os.orders_status_name, osh.date_added, osh.comments, osh.rm_tracking_id from " . TABLE_ORDERS_STATUS . " os, " . TABLE_ORDERS_STATUS_HISTORY . " osh where osh.orders_id = '" . (int)$HTTP_GET_VARS['order_id'] . "' and osh.orders_status_id = os.orders_status_id and os.language_id = '" . (int)$languages_id . "' order by osh.date_added"); while ($statuses = tep_db_fetch_array($statuses_query)) { echo ' <tr>' . "\n" . ' <td class="main" valign="top" width="70">' . tep_date_short($statuses['date_added']) . '</td>' . "\n" . ' <td class="main" valign="top" width="70">' . $statuses['orders_status_name'] . '</td>' . "\n" . ' <td class="main" valign="top">' . (empty($statuses['comments']) ? ' ' : nl2br(tep_output_string_protected($statuses['comments']))) . '</td>' . "\n" . ' <td class="main" valign="top">' . (empty($statuses['rm_tracking_id']) ? ' ' : '<a title="' . RM_LINK_TITLE . '" href="java script:void(0);" onclick="ajaxFunction(\'text_box\',\'' . $statuses['rm_tracking_id'] . '\');">' . $statuses['rm_tracking_id'] . '</a> ' . RM_LINK_LABEL) . "\n" . ' </tr>' . "\n"; } ?> </table></td> </tr> </table> <div id="text_box" style="margin: 10px 0 0 0"><noscript> <div class="messageStackError"><?php echo RM_NO_JS_ALTERNATIVE; ?></div> </noscript></div> </td></tr> <?php Here is a link to my account_history_info I would be very grateful if you would take a look for me. http://www.get-wireless.co.uk/files/account_history_info.zip Many thanks for a great contrib
  9. I have fixed the table thing in admin side, In catalog\admin\orders.php After <td class="smallText" align="center"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td> Add <td class="smallText" align="center"><b><?php echo TABLE_HEADING_RM_TT; ?></b></td> That fixed the table in admin side for me
  10. Have also noticed in the admin orders section my table is a bit wrong looks like this I dont get the table heading and the borders look a bit off
  11. now that royalmail is working I have been able to test it properly, it works great except I get the following The�electronic�Proof�of�Delivery�may�not�be�available�for�th is�item�yet.�Please�allow�up�to�72�hours�after�delivery�bef ore�checking but its all on one line Is this to do with royalmail or have I done something wrong? Also after clicking on the link (customer side) and then closing the box I am left with a huge space at the top the page unless I refresh it or goto another page, Again is this something I have done wrong? If you wish to see it please goto http://get-wireless.co.uk/dev login is [email protected] testtest and there is an order with a valid RM number This is my test site which is a mirror image of my live site. I too thought there would be more interest in this, Maybe we could promote it bit more. I only came across it by accident was actually looking for a parcelforce shipping mod. This mod will certainly save me a lot of time in the updating of orders, No Longer do I have to manually type in the comments box the customers tracking number and type out the url for royalmail everytime. I just need to get my emails working properly now, I did a test purchase on my website and updated the order but the emails are not been sent in html format the text is there for link to royalmail but its not clickable and I have my email client (outlook) Also the link to the customers account doesnt display the full url it starts from the folder where the my shop is IE. Instead of displaying http://get-wireless.co.uk/dev/account_hist...hp?order_id=159 in the email it displays /dev/account_history_info.php?order_id=159 And I am not sure how to go about fixing this :(
  12. Just like to say thanks for this mod :D just a shame RM is currently down so cant fully test it :( I currently only use Royalmail but I am looking to find a courier aswell as royalmail are becoming expensive on bulky\heavy items. Like £18 to send a £23.50 keyboard and mouse set, Would it be possible to make a mod similar to this for couriers ? Dont know if this is possible but: Say a shop has 3 delivery methods Royalmail Courier 1 Courier 2 Since Osc knows what delivery method has been selected can your mod change to reflect this and ask a tracking number be put in for which ever service was selected by the customer IE Customer A buys a product(s) and selects Rm for delivery the admin get the option to put Rm number in and it links to Rm like it does now. Customer B buys a product(s) but selects Courier 1 or 2 as its cheaper, then in admin we are presented with a box to put in a tracking number for Courier 1 and that will auto goto their website for the details. I know it would be a lot of work as there are so many couriers out there but if its possible just start with the big ones like business post TNT ect ect I also like the Idea of the barcode scanner. Did you make the mod to auto update the order after the tracking Id was scanned in?
  13. Would this allow me to import a stock quantity and price for various products from a supplier? The format they send out in is <RealData> <MSG ID="10">Servlet down</MSG> − <ITEM> <ID>343344</ID> − <DESC> HP Ink Cartridge Black 830 sheet for DeskJet 7xx 8xx 970 </DESC> <PRICE CURRENCY="GBP">12.96</PRICE> <QTY>2619</QTY> <DELDATE>2007-08-15</DELDATE> </ITEM> </RealData> Regards Shaun
  14. I have now installed more pics 6 version 2 dated 19th Feb by matix france, I also tried to put the image thumbnailer mod on, which works really well except that star product doesnt seem to allow it. I am guessing its something to do with the image in star product but not sure how to rectify the problem. Look at http://www.get-wireless.co.uk/dev to see what I get Instead of my star product and th rest of my index page I get Fehlende® oder ungültige® Größenparameter! In the star product box Can anyone help resolve this ? Also I would like instead of when the image is clicked it opening the image in a new page it just takes them into the product like clicking on the info button Regards Shaun
  15. Hi guys, I have version 2 by matrix france installed along with the lightbox, All is working pretty well except my thumbnails looked pants so decided to try and add the the thumbnail mod. it seems to work ok except that it puts a black background on .GIF images which I would like to stop. Also I have the star product mod installed and on the main page it all goes wrong look at http://www.get-wireless.co.uk/dev this is my test site. The actual products work fine if you go down into them I commented that line out in the html_output.php file but then get other errors. Ca anyone suggest where to fix this?
  16. If google checkout doesnt accept discount codes and things how does ebuyer give the customer £10 off when they spend £30 or more? or is this done before it goes to google?
  17. Thats correct I am in the UK did you have any trouble with Vat and shipping? I chatge VAT on products but not shipping as royalmail already charge me that so I just pass the cost of RM on to the customer.
  18. I have this contrib installed and seem to work ok, I hd to fiddle around a little to get the VAT passed thru and shipping even tho I dont charge VAT on shipping but do on my items. How ever if I use a Discount Coupon Code the discount is not passed on to google. IE Here is the order totals before it goes off to google Sub-Total: £349.99 Shipping: £0.00 Discount Coupon Disq10 applied: -£35.00 V.A.T @ 17.5%: £46.91 Total: £314.99 Yet when I reach google the total amount is £349.99 My Test site where google is on sandbox feel free to test I aslo get the same problem with Nochex APN but I wil goto their forums to try and get help there The only merchant that seems to handle the discount coupon codes is Paypal IPN at the moment. Isnt there a way we can just tell google here is the amount to charge for these items, rather than having it calculat shipping VAT discounts ect ect
  19. Is it possible to limit the amount of payment recieved via Nochex? Kind like shipping modules. IE If a total value os £100 or less the Nochex is avilable as a payment option. If total value is £100.01 or more then Nochex is removed as a payment option. Reason I ask this is that a the moment I only have a seller account which limits none Nochex customers to sendint me £100 and Nochex customers are limited to £300. At the moment I dont have the correct criteria to upgrade to a merchant account. Regards
  20. If you have installed the latest version of Nochex APC in the admin side you have the opion to select which account type you have IE Seller or Merchant. See the pic below
  21. I think the above maybe due to an OSC update, The site I have it installed onis a virgin install. tried it 5 times now an also tried the earlier version 0.51 by Leigh Davies. Still had the same problem :( Does anybody know where I can get a earlier release of OSC to test my theory? Still 2 ms2.2 just not the 060817 release. Regards
  22. Have installed this mod 4 times now on a virgin install of 2.2ms2 (060817) I have tripple checked all the files that I need to edit and they are fine (as far as i can see) All looks ok for the install how ever when I do a test transaction and I get to the payment page there is no payment option available. Looks like this As you can there is nothing there, However as nochex_apc is the only payment I have in place at the moment if I click continue I get to the nochex payment page. have also noticed in the admin under nochex\transactions I have wot looks like an sql error 1062 - Duplicate entry '341f1286aba3ad9a65f5622faece5eb7' for key 1 insert into sessions values ('341f1286aba3ad9a65f5622faece5eb7?action=view', '1180287987', 'language|s:7:\"english\";languages_id|s:1:\"1\";selected_box|s:13:\"configuration\";') [TEP STOP] Does anybody know why I am getting these problems and how to rectify them? Regards
  23. You can use as many contribs as you like, the only prob is making them all work 2gether as some edit the same code but in a different way. Sometimes its not possible to use 2 particular contribs as they will both use a certain file but will need it to perform slightly different to each other. Look at all the ones in my sig that I use, Plus there are a fe others not listed as the forums have a restriction on the number of chars in a sig :D
  24. I am up for the upgrade? I have a test store which is a clone of my live store where I would be willing to give it a try. It is a heavily modded store too. I am not sure which version of related products I have at the moment as I am trying to figure it out :o Judging by the link in my sig its 3.3c ?
  25. I have installed this contrib on my test site. Took a little effort but may well be worth it. I had to do the following to make it work tho Change $validation_images = tep_image('validation_png.php?rsid=' . $new_guery_anti_robotreg['session_id']); to $validation_images = '<img src="validation_png.php?rsid=' . $new_guery_anti_robotreg['session_id'] . '">'; I also had to use the 2.5 version of catalog\validation_png.php as the 2.6 version just leaves me with a black box. Is there a fix so I can use the 2.6version of validation_png.php Regards Shaun
×
×
  • Create New...