Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Iwant2Lrn

Pioneers
  • Posts

    106
  • Joined

  • Last visited

Everything posted by Iwant2Lrn

  1. Great Mod!! Has anyone created and feeds for anything other than Google product search and if so where have to put them? Thanks
  2. is back in action!

  3. Jack, Looks like you have a small error in the optional instructions for revising the tool.php file. The following code: '<a href="' . tep_href_link('feeders.php') . 'class="menuBoxContentLink">' . BOX_FEEDERS_GOOGLE . '</a><br>' . should be '<a href="' . tep_href_link('feeders.php') . '" class="menuBoxContentLink">' . BOX_FEEDERS_GOOGLE . '</a><br>' . Just missing a quotation mark before the class. Great mod and does wonders for me.
  4. Need some help with this special request. I like this mod and use it a lot along with the sort order mod. Is there a way to add the sort order field to the attribute manager when inputting the info for a product. Currently I have to go to the Product attributes page to set the sort order everytime I input a new product. Also it there a way to input the sort order for all attributes on a screen and them make one submission to the database? Any help would be appreciated.
  5. I resolved the no redirect to success page by adding the code below: tep_redirect(tep_href_link(FILENAME_CONTACT_US, 'action=success')); After the // EOF Super Contact us enhancement 1.41 around line 53.
  6. Paypal Web standard will allow you to pay without creating a paypal account. PWA 2.0g is a mod that will allow people to pay without an account in osc. These are already available because I am using those on my site.
  7. Hello I installed this mod and found an issue on the checkout_confirmation.php. The value that is subtracted from the other shipping module when you have products in the cart that are not getting free shipping is not being reflected on the checkout_confirmation. I am not sure how to fix this because it should be looking at the same variable that is on the checkout_shipping.php. Any idea how to fix this? Thanks
  8. I am using PWA (Pay without account) 2.0g,h on my site and I am current working on figuring out how to adapt the original paypal web payments standard mod with the PWA. As it stands now the dummy account does not get removed from the database. I am also using UTemails to format all email in HTML but the paypal has coding to fire off the email from within the module so i am also working on that as well. I will post when I get a solution.
  9. Lucy, I have a heavily moded site before I installed the paypal web standard and I did not have any issues. I would uninstall the module and reinstall it.
  10. I also have that issue. It is centered around IE and just IE. It works in Firefox and safari. Hopefully someone out there knows how to fix it. I have no clue how to fix it. Anyone!
  11. Ah thanks! Even though I have been trying to figure out how to do this for the last day and a half, I can at least feel good that I was looking at this part of the code the whole time. Its a slow process but I'm learning. Thanks again!
  12. Sam, I would like to add the Model number to the products_new.php page so it looks similar to the product listing page, can you give me some help with that? I am assuming that is the way it was intended and not an error in my install. Thanks
  13. IC IC! Well I want to make sure that I am displaying the right information so what would you suggest I do with the specials infobox possibly showing a product in the new items but both will have different pricing? Also I think I found a bug in the products_new.php page that you included. In the sort order pull down I have 4 fields the first being Date added, if you click on another say Product Nmae Reverse, the Dated added disappears and you can not longer re-sort the items by date added. I am getting used to the php world so I tried some different things to fix but was unsuccessful. Any help with that too. Also had a problem with the products_new.php page pulling the text defines for the sort form from the Filename_default or index.php in language. I had to add the following to the includes->languages->english->products_new.php: // ****** Copied below from Index.php because could not get the require to work for Fileanme_default ********* define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product Name'); define('TABLE_HEADING_MANUFACTURER', 'Manufacturer'); define('TABLE_HEADING_QUANTITY', 'Quantity'); define('TABLE_HEADING_PRICE', 'Price'); define('TABLE_HEADING_WEIGHT', 'Weight'); ?> Btw I really like the features of this add-on. Keep the improvements coming!
  14. In the install instructions I have a question about the following text: Can someone explain to me what would be illegal? I would like to have the special pricing show up in the new_products.php and products_new.php pages. Can someone tell me what I need to do to add the special pricing to those pages? Thanks
  15. Does anyone get an TEP-Stop error if they try to copy a product in the admin-categories that has an individual shipping charge. I say this because while trying to find out what was wrong I commented out the insert line in admin/categories: //bof shipping//hadir $shipping_query = tep_db_query("select products_ship_methods_id, products_ship_zip from " . TABLE_PRODUCTS_SHIPPING . " where products_id = '" . (int)$products_id . "'"); while ($shipping = tep_db_fetch_array($shipping_query)) { tep_db_query("insert into " . TABLE_PRODUCTS_SHIPPING . " (products_id, products_ship_methods_id, products_ship_zip) values ('" . (int)$dup_products_id . "', '" . tep_db_input($shipping['products_ship_methods_id']) . "', '" . tep_db_input($shipping['products_ship_zip']) . "'"); } //eof shipping//hadir and it seems I do not get this error. Also once I have entered a value into the individual prices field I can no longer make the field null. It defaults to 0. If '0' is there isn't that going to enable the individuals module. How do disable an item that I had set up for individual shipping?????????? Really need some help here!
  16. Great work on the contribution! 1 question. Can someone upload the released version or indicate which rev to download to get the complete version?
  17. Jan, I am trying to add this code from Nulti Vendor shipping to the priceformatter.php. Can you tell me if I have the syntax correct? $sql = "select pd.products_name, p.products_model, p.products_image, p.products_id," . " p.products_price, p.products_weight," . " p.products_price1,p.products_price2,p.products_price3,p.products_price4, p.products_price5,p.products_price6,p.products_price7,p.products_price8," . " p.products_price1_qty,p.products_price2_qty,p.products_price3_qty,p.products_pri ce4_qty, p.products_price5_qty,p.products_price6_qty,p.products_price7_qty,p.products_pri ce8_qty," . " p.products_qty_blocks," . " p.products_tax_class_id," . " v.vendors_id," . " v.vendors_name ," . " NULL as specials_new_products_price" . " from " . TABLE_PRODUCTS_DESCRIPTION . " pd," . " " . TABLE_PRODUCTS . " p" . " " . TABLE_VENDORS . " v" . " where p.products_status = '1'" . " and v.vendors_id = p.vendors_id" " and p.products_id = '" . (int)$product_id . "'" . " and pd.products_id = '" . (int)$product_id . "'" . " and pd.language_id = '". (int)$language_id ."'"; $product_info_query = tep_db_query($sql); $product_info = tep_db_fetch_array($product_info_query); // BOF add List Price (retail price) to the product_info array $product_info['list_price'] = $product_info['products_price']; // EOF add List Price
  18. There has got to be an easy way to do this! Any help would be appreciated!
  19. What you need to do is count the number of open { in the if or whatever kind of statement it is around line 40. The number of open { should equal the number of closed}. Try pasting you code here and highlight line 40 and some should be able to help you!
  20. I think an easy way for me to use different shipping method for specific products would be to create different tax classes and be able to enable the shipping methods based on the tax class entered? Anyone know if this is possible or a contribution that does this?
  21. This would be a great mod if I can just get it to work. I have spent the last 3 days chasing errors, one after another. I have over 30 mods to my site and have not had this much trouble. The original one works fine but I like the functionality of crashwave's hacks. I had similar experience with The Easypopulate contribution. I had to give up on that one. I really really do not want to give up on this one. With that being said here is were I am: I am using php 5/mysql 5, the latest osc release, many mods to my site. I first started with this error: 1146 - Table 'bnmxgrp_xstore1.TABLE_PRODUCTS_SHIPPING' doesn't exist SELECT * FROM TABLE_PRODUCTS_SHIPPING WHERE products_id=33 [TEP STOP] This is what happened when trying to install the original version and it says DROP TABLE IF EXISTS `products_shipping`;. This was not a good idea for me for whatever reason. So I restored my db and files and tried to load 4.1. I then get this error: Parse error: parse error, unexpected T_DOUBLE_ARROW in /home/httpd/vhosts/impsportclothing.com/httpdocs/includes/classes/shopping_cart.php on line 326 I find out how to fix that, I then get this error: Parse error: parse error, unexpected T_VARIABLE, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/httpd/vhosts/artmozambique.com/httpdocs/catalog/includes/classes/shopping_cart.php on line 17. I had to make some changes to the code //START COMMENT IF YOU DO NOT HAVE FREE SHIPPING MODULE // BOF: WebMakers.com Added: Downloads Controller - Free Shipping and Payments // Show either normal shipping modules or free shipping module when Free Shipping Module is On // Free Shipping Only elseif ((tep_get_configuration_key_value('MODULE_SHIPPING_FREESHIPPER_STATUS')) && $cart->show_weight()==0 && ($shiptotal == '0' || !$shiptotal)) { $include_modules[] = array('class'=> 'freeshipper', 'file' => 'freeshipper.php'); //END COMMENT IF YOU DO NOT HAVE FREE SHIPPING MODULE // All Other Shipping Modules } else { if(sizeof($products)>$indvcount){ while (list(, $value) = each($this->modules)) { //try foreach is faster//hadir $class = substr($value, 0, strrpos($value, '.')); // Don't show Free Shipping Module if (($class !='freeshipper')/* && ($class != 'indvship')*/) { $include_modules[] = array('class' => $class, 'file' => $value); } } } }//COMMENT IF YOU DO NOT HAVE FREE SHIPPING MODULE and you commented above I had to play around with moving }'s since I commented out what was instructed. After that I got and error saying unexpected $end... so I added another } around the bottom of classes/shipping.php I then got the error from post #399 and 401 because I didn't use the very most up-to-date fix (crazy): CODE $shipping = array('id' => $shipping, 'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' $quote[0]['methods'][0]['title'] . ')'), 'cost' => $quote[0]['methods'][0]['cost'], /////////INDV SHIP///////// 'invcost' => $shipping_modules->get_shiptotal()); now I am getting this error: Fatal error: Call to undefined function: get_shiptotal() in /usr/local/4admin/apache/vhosts/bnm-group.com/httpdocs/onlinestore/catalog/includes/classes/shipping.php on line 24 I am pretty sure this is not the last one! Could really use some help from the pros of this contribution! :blink: :(
×
×
  • Create New...