Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

celshader

Pioneers
  • Posts

    40
  • Joined

  • Last visited

About celshader

  • Birthday 11/14/1974

Profile Information

  • Real Name
    Stephen Nipperess
  • Gender
    Male
  • Location
    Lismore

Recent Profile Visitors

3,803 profile views

celshader's Achievements

  1. celshader

    IPN failure

    I have this problem as well. This is the address the email says is failing my domain address /ext/modules/payment/paypal/ipn.php The location of my ipn.php file is similar to this but not the same my domain address /ext/modules/payment/paypal_ipn/ipn.php Whatever this is it seems to be effecting Paypal IPN users across the board. Not just oscommerce users. Here is a similar thread for vbulletin. http://www.vbulletin.com/forum/showthread.php?340311-PayPal-Instant-Payment-Notification-Warning
  2. This seems to be effecting Paypal IPN users across the board, not just oscommerce. Here is a similar thread I found for vbulletin. http://www.vbulletin.com/forum/showthread.php?340311-PayPal-Instant-Payment-Notification-Warning There are some good clues here on whats going on even though its not specific to oscommerce. I will be working on a fix for this over the next couple of days as it is effecting one of my sites too. I will keep everyone posted here if I find a solution although I am not an expert on payment gateways.
  3. I have a form in flash that is quite complex and calculates the total price of Window Shutters including square area, frame type and so on. I have HAD to do it this way because the form was way more complex than anything normal Oscommerce product attributes could handle. I have been able to pass all the product attributes (height, width, frame type etc) and the Shutters price as an attribute to the shopping cart from the form with the help of the following contribution. Product Attributes - Option Type Feature http://addons.oscommerce.com/info/160 This works perfectly :thumbsup: This is what it looks like Now I would like to get the Shutters price attribute and use it to REPLACE the product price by fetching it from the 'customers basket attributes' table and use to calculate the subtotal for the cart. I have identified all the code that calculate prices and totals. For example I have tryed to use the following in includes/classes/shopping_cart.php around line 349. Instead of the original line of $products_price = $product['products_price']; //about line 349 I have tryed to set the $products_price by fetching it from the 'customers basket attributes' table $product_price_query = mysql_query("SELECT products_options_value_text FROM customers_basket_attributes WHERE customers_id = '" . (int)$customer_id . "' AND products_id = '" . (int)$products_id . "' AND products_options_id = '11' "); $product_price_fetch = mysql_fetch_array($product_price_query); $products_price = $product_price_fetch[0]; However in it does not seem to work. Can anyone help. I am beginning to run out of time on this one. :blush:
  4. I am setting up a website that allow people to order windows. I am using Oscommerce with 'Product Attributes - Option Type Feature' (product_attributes_option_type_2.02) installed. http://addons.oscommerce.com/info/160 This allows the customer to manually type the area of the window in meters square as a product attribute (variable on product info page for this attribute is id[txt_6] ). I need oscommerce to use the product price as base 'price per square meter' and multiply it by the 'meters square' product attribute to arrive at the final price. ie $id[txt_6] * $products_price * $qty = order total or window in square meters x price per square meter x quantity = order total Any help is much appreciated. :D
  5. Found an answer just add <input type="hidden" name="search_in_description" value="1"> to the normal and advanced search forms
  6. Hi guys. Is there any easy way to enhance the basic search box feature so that it automatically searches in product descriptions as well as product titles. I noticed this is an tick box option in the advanced search feature. This way keyword lists can be easily added to the product descriptions to make products easier to find.
  7. Corel Draw and Paint combo sells very cheap and is good enough for most web development
  8. I have changed the 'Buy now' button in product_listing.php to 'more info'. I would like to add an 'add to cart' button underneigh it so you dont have to go to product_info.php in order to add the product to the cart. I have seen this feature on many oscommerce sites. Any help is appreciated.
×
×
  • Create New...