Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Jos Medinger

Pioneers
  • Posts

    80
  • Joined

  • Last visited

Profile Information

Jos Medinger's Achievements

  1. I've entered the link into the junior_callback.php file and this now presents the user with a clickable link When this is clicked however it adds a 2nd order entry into the databse marked with 'Preparing [WorldPay]' (and triggers an order success email) The automatic callback is marking the primary order as paid but not sending out the order success email. Any ideas? Is it a setting in Worlpay admin screens causing this? Thanks
  2. Jack I've managed to resolve this now. There was an extra line in admin/categories.php which read:- $product = tep_db_fetch_array($product_query); Once I removed it I didn't get the error any more Cheers Jos
  3. I have this contrib all working apart from 1 awkward error message:- I get it above all the product fields when I go to edit any product in the admin Warning: reset() [function.reset]: Passed variable is not an array or object in /home/.sites/143/site2/web/catalog/admin/includes/classes/object_info.php on line 16 Warning: Variable passed to each() is not an array or object in /home/.sites/143/site2/web/catalog/admin/includes/classes/object_info.php on line 17 Also there is no data entered into the product fields (although it's in the database) - I guess because the sql query has stopped running by that point? If you could point me in the right direction, it would be hugely appreciated Thanks Jos
  4. Sorry - I should have used the correct terminology. As you create astore, you'll add a category and that category may also end up with multiple sub categories before you get to any products. It's these (which by default are linked as www.domain.com/catalog/index.php?cPath=35 and so on) which I wanted to check would be individually editable for page titles and meta information The reason I asked is that the version of HTC I'm using (2.3.3) didn't allow for this... Thanks
  5. Hope this isn't a dumb question but... :-" Does this contribution give the facility to give 'section' and 'subsection' pages within the store their own page titles meta information? Thanks
  6. Hi, I've had the loyalty scheme running for quite a while now and everything is great. We recently installed the 'Purchase without account' module and this is conflicting with the loyalty scheme. It seems that all customers checking out without an account are being issued the same customer_id and therefore each new customer that checks out without an account is getting a higher and higher loyalty bonus. Is there a way to amend the code to say 'if customer_id = 0 (or whatever it is) then do not add loyalty bonus'? Thanks Jos
  7. Hiya, did you ever resolve this? If so - can you enlighten us (or anyone else for that matter that has sorted this!) Thanks Jos
  8. Hi there I'm considering using this to merge a previous mailing list with the one now maintained by OsC . Is it possible to take a number of email addresses and enter them into this contribution so that the newsletter emails them too? Thanks
  9. You could always look at the OsCommerce section on Template Monster Cheers Jos
  10. You could change the text on the default "out of stock" message. Go to Admin section, click on 'My Store' and select the 'Stock' option on the LHS. Now edit the field called 'Mark product out of stock' and change to something like "Sorry, this item is out of stock - estimated availability date is 21 days" This message will be set for all items on the store that are out of stock. Regards Jos
  11. Hi Thanks for this but it doesn't address the issue of the discount being product group specific. I need the site to discount a group of products if they are ordered together as opposed to discounting being applied when a certain cart value is reached. i.e. I put a necklace in my basket and I am informed that if I buy the earrings and the brooch then I will get an x% discount. I need a contribution that will allow me to specify what items are linked in a group to others so that if they are ordered together they will be correctly discounted. Jos
  12. Joel Can you clarify what is out of order - is it in the admin section or on the actual page - can you give us a URL as an example? Thanks Jos
  13. Why don't you use the 'Date Available' field on the product entry screen - this will set the product as non orderable until the set date Jos
  14. Here's a very quick fix - don't know if it'll help you - but it has done me! The random options is because there is no sort in the default query so you are at the mercy of MYSQL. No guarantee of any sort sequence. To sort by the "options_value_id" field add the sort field to the query in catalog/product_info.php Change This $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . $products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . $languages_id . "'"); to this: $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . $products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . $languages_id . "' order by pa.options_values_id");
  15. Hi there Can anyone point me in the direction of a contribution that allows me to specify a group of products which, when ordered as a group, have a discount applied to them? i.e. Buy item 1, item 2 and item 3 and get ?10 off Thanks Jos
×
×
  • Create New...