Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rhubarb

Pioneers
  • Posts

    176
  • Joined

  • Last visited

Everything posted by rhubarb

  1. I'd like to get this contribution working with extended option types ie be able to display a mix of checkboxes as well as radiosets and dropdowns and also for products that are not tracked for stock. I've read some of the manual for the QTPro contribution and I see there is brief guidance for writing other classes. However, I'm wondering if there is a fundamental reason why the stock has to be tracked before different option types can be displayed. Maybe it would be easier to first add extended option types for products that are NOT tracked. Has anyone done any work in this area please?
  2. There is the well known 'Separate Pricing Per Customer' contribution which allows for separate discounted prices for customers according to their group, however I don't believe this extends to option prices. Has anyone done any work on providing separate option pricing per customer according to group?
  3. I think I've solved my problem where the separators were being replaced by forward slashes. The following setting was true, once set to false it worked. Admin Control Panel -> Configuration -> My Store -> Use Search-Engine Safe URLs (still in development) -> FALSE
  4. I have two sites with Ultimate SEO urls installed, one was a fresh install with oscommerce demo products, the other has had SEO integrated as per install instructions. The problem occurs when adding a product to the cart from the product_info.php page, on the integrated site when add to cart is clicked the browser doesn't find the link, but the demo version works fine. The html for the form in 'view source' compares as follows: demo site: <form name="cart_quantity" action="http://e-shop.org.uk/seo/microsoft-intellimouse-p-3.html?action=add_product" method="post"> integrated site: <form name="cart_quantity" action="http://10.0.0.3/sitename/oil-xfe-diesel-5-p-747.html/action/add_product" method="post"> Some where the '?' and '=' are being replaced by '/'. Any clues anyone please?
  5. I've just solved it. The main image was located in the path /images/hewlett_packard/ and Mopics was looking for the other images in images/thumbs/hewlett_packard/ , once the main image was moved to the path images/ then it worked.
  6. I've got the same problem on a fresh install with only Mopics added at http://e-shop.org.uk/dynamic_mopics/produc...?products_id=27 and the permissions on the image directories are set to 777 as suggested in the thread at http://www.oscommerce.com/forums/index.php?sho...hl=mopics+setup
  7. Using FPDF to download the catalogue as a PDF file and if the PDF is saved and then an href link is subsequently clicked then a blank page is returned in the browser. This seems to have occured following the installation of Ultimate SEO Urls. Has anyone else had similar problems?
  8. I've got the standard Discount Coupons to work I believe, at least it adjusts the order total. I've not yet extended it.
  9. Now I've installed the coupon order total module I see the box in checkout for entering the coupon code, and I see how it is applied to the total bill. Maybe I could extend this to allow the customer to enter the coupon code on the homepage which discouunts all prices as well as in the total calculation.
  10. Can anyone please explain how the discount coupon contribution works please. What I really want to do is allow the customer to enter a promotion code which then discounts all prices seen on the site and obviously the total in checkout. My installation is Osc 2.2 MS2 with Credit Class/Gift Vouchers/Discount Coupons (Version 5.04).
  11. In /includes/gbook.php line 68, I've changed $GB_PG["base_url"] = dirname($HTTP_SERVER_VARS["PATH_INFO"]); to $GB_PG["base_url"] = HTTP_SERVER . DIR_WS_HTTP_CATALOG; and I moved signing.gif to the /img folder and then it seems to work. I noticed the original line of code above worked ok on a local server but not when uploaded to our 1&1 server.
  12. mat123slade: It takes a lot of time reading 15 pages, I thought someone might be able to help with a one liner. Also I find the recent change to the format of results returned by a search is no improvement - better off using google!
  13. How does this contribution work in the Admin Control panel? I can't find anywhere central for adding customer groups, so I edited a customer and entered a new group name. Now I see the group name listed at the bottom of each product page; what should I enter in the input field, a price or a discount?
  14. The contribution includes a link to 'Add a new product' to an order, has anyone modified the contribution to allow the deletion of products/product options?
  15. Having problems with htmlArea v2.02 wherby the following tag <?xml:namespace prefix = o /> is being added and it causes the error: Exactly as in the thread here at htmlarea.com/forum . Is v3.0 an update which might solve the problem? If not then can anyone explain how they have fixed it? The htmlarea.com forum thread says there's a function called editor_filterOutput, but I'm not sure what string to add there.
  16. To avoid the error when no products have ben added, I updated file edit_orders.php to skip the product update when no products have been added. Around line 255 you'll find ... // Update Products $RunningSubTotal = 0; $RunningTax = 0; After this I added.... $products_exist=false; if (is_array($update_products)) { $products_exist = (count($update_products) > 0 ? $products_exist=true : $products_exist=false); } if($products_exist==true) { The next line is... foreach($update_products as $orders_products_id => $products_details) { // Update orders_products Table Then *BEFORE*... if ($order_updated) around line 378 I closed the if statement with... }
  17. I see now, it's the selection box name. I'm adding the option of using checkboxes instead, so each checkbox id or value will need adding to the $add_product_options variable.
  18. There are 4 occurances of the following line of code in edit_orders.php: if(IsSet($add_product_options)) but where does the variable $add_product_options get set?
  19. In file create_order_details.php where is the variable $is_read_only defined? Is this part 'in development', what's the intention?
  20. I'm adding the Step-By-Step Manual Order Entry contribution and I've added the various files to the admin_files table and the create account works fine. However the select customer button on the create order screen causes a redirection to the login screen. It's due to a call on the function tep_admin_check_login. Has anyone any suggestions as to how to solve this issue please?
  21. Is there a site where we can see this contribution installed?
  22. In cPanel click on the icon MySql Databases, scroll to the bottom and you should see a link to phpMyAdmin. Assuming you've already setup the database using the install procedure, select your database in phpmyadmin and click the SQL option at the top, you'll then see a large text box with a title 'Run SQL query/queries on database .....' where you can paste the above sql commands and then click the 'go' button.
  23. I've replaced a select box with 3x checkboxes, but only the name and value of the last checkbox is listed in the $attributes array which is passed to the cart class method 'add_cart' by application_top.php . That makes sense since a select box would only pass one selection as standard, but in my situation I want to be able to pass through names and values of all checkboxes. I can't find where the attributes array, that is passed to the cart, is constructed.
  24. I now see that once the continue button is clicked then application_top.php checks the value of $HTTP_GET_VARS['action'] which is now set to 'add_product' , for which case the cart class 'add_cart' method is called.
  25. I see the continue button seems to return to the same page eg http://<home dir>/product_info.php?cPath=3_25&products_id=69 If so, where does it get redirected to page shopping_cart.php? (shame we can't edit our own posts)
×
×
  • Create New...