Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

D-BlooD

Archived
  • Posts

    40
  • Joined

  • Last visited

Profile Information

  • Real Name
    Greg Danson

D-BlooD's Achievements

  1. Hi I have tried searching for a solution for this but could not find any good information on how to solve it. I have Paypal standard installed today and its working just fine but I would like the paypal site to display in norwegian since my webpage is located in Norway and my customer basis is there too. It's possible to change between norwegian, english, chinese, espaniol and french from the pulldown menu on the top right of the Paypal page. I would like to predefine paypal standard to use the norwegian language as standard since I am loosing customers because them getting scared of the page showing in english. Does anyone have any code i can add to paypal standard module that fixes this? Thanks :) -- D-BlooD
  2. Thanks, it works like a charm :) Maybe it could be something to add to the documentation for others, this litle change saved me from having to add an extra contrib. -- D-BlooD
  3. I have installed this nice contrib and have everthing working.. On page 37 sv1eez posted a quick and clean way to show random products in new_products.php He's code looks like this $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, p.products_price as products_price from " . TABLE_PRODUCTS . " p where products_status = '1' and p.products_image != '' order by rand() limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, p.products_price as products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' and p.products_image != '' order by rand() limit ". MAX_DISPLAY_NEW_PRODUCTS); that code was for a older SPPC version.. todays code for SPPC 4.21a without rand look like this $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, p.products_price, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and pd.language_id = '" . (int)$languages_id . "' and p.products_id = pd.products_id order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); } else { $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, p.products_price, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c using(products_id) left join " . TABLE_CATEGORIES . " c using(categories_id) where c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' and pd.language_id = '" . (int)$languages_id . "' and p.products_id = pd.products_id order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS); I dont realy want to break any code and get some other problems somewhere else ;) Anyone who can help? Thanks in advance, and a high five to the SPPC contrib maker :) -- D-BlooD
  4. The border function is missing for instance, watermark and a couple of more features.. About the link posted its for the 1.7 version thats edited by someone else then him. There is no changelog to see what they have changed I would therefore like he's 1.6. Yeah and belive me the 1.6 is not available through this thread at least i have read through all 58 pages today just to get up to date on what has been happening. Thanks again.. -- D-BlooD
  5. Thanks psynaptic i would if it coverd every need i have for my store ;) I allready have IM 1.4(?) installed and would like to update that code to the latest available IM or at least what was available. Dont get med wrong the "'On the Fly' Auto Thumbnailer using GD Library" contrib is a nice contrib, but i lacks some features i love with IM. Thanks :) If anyone has the IM i was requesting I would still love a link or something where I can download tomjmul's latest version from. -- D-BlooD
  6. Could someone please post a direct link or a link to a webpage that still has tomjmul's latest version (1.6 i belive) of IM? Thanks -- D-BlooD
  7. I am having problems with the following package LatestNews v1.1.4 and v1.1.5 http://www.oscommerce.com/community/contri...arch,latestnews The problem can be seen here http://www.xunlock.com/news.php there should only be showing 5 news posts on each page and not all the news posted ever posted. As you probebly can see it shows on the top right corner and bottom right corner that there should be 3 pages with news, no matter witch you pick it shows all the news posts and if i change the maximum values the numbers change but the page stays the same. Anyone have any suggestions on how to solve this problem? Thanks in advance -- D-BlooD
×
×
  • Create New...