Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

genata93

Pioneers
  • Posts

    29
  • Joined

  • Last visited

About genata93

  • Birthday 02/02/1993

Profile Information

Recent Profile Visitors

4,879 profile views

genata93's Achievements

  1. Hello, I am looking for an add-on that will allow customers to order without registering account. I found some in add-ons section but I want to ask you have you used add-on that does this. Can you recommend me one that you have tested? I forgot to say I am using osC 2.2.
  2. You can try downloading a slider/carousel. There a lots of sliders/corousels in the internet. You can check http://dev7studios.com/nivo-slider/ and http://bxslider.com/ After you download them there will be some coding needed for your product data to match the html for the carousel to work.
  3. I have had the same problem. When tried to use your solution it did not provide me with good results. The date was going back go 1st of January, 1970. There is other solution I found which works great. You should add these lines in admin/includes/languages/(your-language).php after: function tep_date_raw($date, $reverse = false) { if ($reverse) { return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4); } else { return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2); } } add: // return a dbase formatted date for ddmmyyyy format adjust if you use the mmddyyyy format function tep_store_date ($date) { return substr($date, 6, 4) . '-' . substr($date, 3, 2) . '-' . substr($date, 0, 2) . ' ' . date('H:i:s'); }
  4. Hello npn2531, sorry it is again me but I just can't seem to be finding where the problem is. I am not sure that you understood the problem right(maybe because I didn't explain it well). Now as I am looking my orders I see that when a client order 1 item everything is OK but if the client ordered 2 or more products in the invoice is shown only the first product. The order total is right though(it gives the sum of the all ordered products not just the product shown). When I look in the database table orders_products there is only one record for the order. Can you please point me where the problem might be because it is really inconvinient not to be able to see what my clients order? Thank you in advance and once again sorry to bother you again... genata93
  5. Hello, I am looking in the order confirm.php and the can't see placeholder for $ordertotal, the only code that has something to do with order total is this: for ($i=0, $n=sizeof($order_totals); $i<$n; $i++) { $mm_ordertotal .= strip_tags($order_totals[$i]['title']) . ' ' . strip_tags($order_totals[$i]['text']) . "\n".'<br/ >'; } which I can't understand what exactly does. Is the problem here? I think that the order total value I am getting on the orders is correct. The incorrect part is that when I view the invoice I see products that are cheaper than the order total value. For e.g. Order total = 79.80; when view the invoice-> Products Product number Tax Price(no tax) Price(with tax) Total(no tax) Total(with tax) 20 x Some product 172864/HK 0.00% 0,60lv. 0,60lv. 12,00lv. 12,00lv. Total: 79,50lv. after I see this I call my client I he tells me he ordered more products and with them the order total is 79.50 which is correct. What should I search or do in this case?
  6. Hello npn2531, I am using your contribution Mail Manager for a while now and I see something strange in my store. On some of the customers' orders the Order total value is different(bigger) than the products ordered. This don't happen for all of the orderds. Firstly I was very surpised what is happening but today after I noticed the discrepancy again I contacted my customer and found out that he ordered more products which I could not see in the invoice. Do you have any idea what might be going wrong? I will really appreciate an answer from you. Thank you, genata93
  7. hello, this contribution is wonderful! but i have a little problem. When i go to admin>Mail manager>Send email it gives me this: Fatal error: Call to undefined function tep_hide_session_id() in /home/mx7jjpft/public_html/admin/mm_email.php on line 96
  8. Hi! I am using this contribution and I want to ask if the urls have 301 redirect and if not is there any simple way of doing a 301 redirect? Thank you.
  9. Hello, I am curious to know if there is a module that will allow site customers to add products of their own to my oscommerce shop? I have seen that on other systems there are such modules and want to know if oscommerce has one too. Regards. Evgeni
  10. Hello ! I have installed the contribution Search TagCloud to my site but I have one problem that I'm trying to solve. My site is in cyrillic and in the TagCloud box the keywords are shown as it has to but in the links they are not. example This is how the link is generated: /advanced_search_result.php?keywords=%C3%A4%C3%A8%C3%AD%C3%AE&search_in_description=1 and this is how it has to be generated: /advanced_search_result.php?keywords=дино&search_in_description=1 I have tried to change the charset in the Search TagCloud database file but unfortunately without result. Can anyone give me some help ? Thank you Evgeni
  11. sorry for the dumb question but how can I increase the field size? I have no idea of database.
  12. ok I found it and it is working but i cannot type all the characters I want to convert there. so is there other solution? maybe I should write them in some file by hand ?
  13. Hello, I just added this contribution to my site but I have one problem. The links have cyrilic letters and they cannot be displayed in the URL. I have function that can transform the cyrilic letters to latin. My question is where should I put the function and get it working?
×
×
  • Create New...