Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

FrankCRFG

Pioneers
  • Posts

    15
  • Joined

  • Last visited

Everything posted by FrankCRFG

  1. So, In the for_OsC_2.3.3.3_2.3.3.4 folder there is includes and mobile folders and in common files folder is a catalog folder inside of that is folders images, includes, and mobile. I was under the impression accotring to the following - to 1st copy from the folder for_OsC_2.3.3.3_2.3.3.4 mobile to my main /root directory of shop 3A) To install the mobile pages in the mobile subdirectory: Copy the mobile directory (incl. all content) to the root directory of your shop. Then according 4 I am to upload the common files mobile directory 4. Upload this directory: common files/catalog/mobile/….. since the two mobile folders have different contents - some files have different sizes, Am I to copy the 2nd mobile folder to inside of the mobile folder making catalog/mobile/mobile ?
  2. I was installing on new install of os commerce v.2.3.4 iOSC ver 7.5.8 I used instructions Installation for OsCommerce 2.3. to 2.3.4. Then came to instructions section 3B B) To install the mobile pages in your mobile subdomain: Copy the content of the mobile directory to the mobile subdomain directory of your shop. Keyword bothering me is subdomain what is ment by "mobile subdomain directory of your shop" how does that differ from the mobile directory I just added? Then when I get to section 4 4. Upload this directory: common files/catalog/mobile/….. when I attempt this, There are a few files that have the same names but different sizes.
  3. Hello, Is there a way so when you click on a category link it doesnt load the page but just expands (For example: you click on the "Hardware" link on the navbar while on index.php and it expands the category but still stays on index.php instead of going to the category list page) Thank you
  4. azer SENT ME A PM and The intelligent person keeps his email box FULL to stop reply's so There were others who have mentioned the issue in the forums before, no reply's to them For MONTHS As for others work. It is less than useless to post a "fix" that is only compatible with a very specific version with specific contributions installed, and not listing what they are. Now that is easy to do and very damaging to the contribution. As for the version (2.2 Release Candidate 2a + buySAFE) I do not see you posting a solution. Is it too difficult? PS Your email box if full.
  5. A few shipping issues I have been trying to solve with no success. 1) Supplier ships products by in case packs if full case qtys are ordered. and different products have different qtys and weights. like one case of 100ft svga cables is 39 lbs while 400 1ft c5e is 21 lbs. Oscommerce calculated the shipping at fixed max box size. Which falls apart when customers purchase larger qtys. Any Ideas? or know of any contributions that are qty based PER product SKU? I have looked at many contributions and also Enhanced Multi Vendor Shipping http://www.oscommerce.com/community/contributions,1928 Multi Vendor Shipping http://www.oscommerce.com/community/contributions,969 From what I have read from searches and forum discussions neither seem to do what I am looking for. Unless I missed something. 2)Also, on the flip side I would like to give the customers ordering only one of a specific item the option to ship a specific for that item if one of that item ordered ( and no other items) For example, one of item x can fit in a priority mail envelope. They have the additional option to pick that as a shipping method. the contribution that seems to do this is Individual Product Shipping Prices - v1.0 Yet I also have to be concerned with interaction with other shipping modules. If known, any other options? Any insight is appreciated.
  6. Any one else have this issue? I have been looking at the Products Extra Fields contribution http://addons.oscommerce.com/info/2202 The installation instructions do not appear to be correct for the Product Extra Fields 2.0j version for doing a clean install. I have osCommerce Online Merchant v2.2 RC2a. - clean install -(2.2 Release Candidate 2a + buySAFE) On one part of the instructions state 8. catalog/advanced_search_result.php Replace the following (approx on line 221): $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; BUT my has $select_str = "select distinct " . $select_column_list . " m.manufacturers_id, p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price "; if ( (DISPLAY_PRICE_WITH_TAX == 'true') && (tep_not_null($pfrom) || tep_not_null($pto)) ) { $select_str .= ", SUM(tr.tax_rate) as tax_rate "; } $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id"; if ( (DISPLAY_PRICE_WITH_TAX == 'true') && (tep_not_null($pfrom) || tep_not_null($pto)) ) { if (!tep_session_is_registered('customer_country_id')) { $customer_country_id = STORE_COUNTRY; $customer_zone_id = STORE_ZONE; } $from_str .= " left join " . TABLE_TAX_RATES . " tr on p.products_tax_class_id = tr.tax_class_id left join " . TABLE_ZONES_TO_GEO_ZONES . " gz on tr.tax_zone_id = gz.geo_zone_id and (gz.zone_country_id is null or gz.zone_country_id = '0' or gz.zone_country_id = '" . (int)$customer_country_id . "') and (gz.zone_id is null or gz.zone_id = '0' or gz.zone_id = '" . (int)$customer_zone_id . "')"; } $from_str .= ", " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; It is not the same. ALSO Even though section 9 and on may be need only if upgrading, it seems it should be stated so. Section 9 9. admin/includes/functions/general.php New chapter since v1.3 Find function tep_remove_product. Inside this function find: tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where products_id = '" . (int)$product_id . "'"); and immediately after add: // START: Extra Fields Contribution tep_db_query("delete from " . TABLE_PRODUCTS_TO_PRODUCTS_EXTRA_FIELDS . " where products_id = " . (int)$product_id); // END: Extra Fields Contribution This is not in the oscommerce file. also Section 10 refers says 10. catalog/advanced_search.php Find the lines at the top of the file that read as follows: <link rel="stylesheet" type="text/css" href="stylesheet.css"> <script language="javascript" src="includes/general.js"></script> a line with <script language="javascript" src="includes/general.js"></script> does not exist the 1st one does. Go to the top of the pageReport Post Any one have correct instructions? Of at least option for other contributions that make it easier to add fields
  7. Is this so complex noone can answer it, of is it such a novel concept that no one has thought of the need?
  8. Any one else have this issue? I have been looking at the Products Extra Fields contribution http://addons.oscommerce.com/info/2202 The installation instructions do not appear to be correct for the Product Extra Fields 2.0j version for doing a clean install. I have osCommerce Online Merchant v2.2 RC2a. - clean install -(2.2 Release Candidate 2a + buySAFE) On one part of the instructions state 8. catalog/advanced_search_result.php Replace the following (approx on line 221): $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; BUT my has $select_str = "select distinct " . $select_column_list . " m.manufacturers_id, p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price "; if ( (DISPLAY_PRICE_WITH_TAX == 'true') && (tep_not_null($pfrom) || tep_not_null($pto)) ) { $select_str .= ", SUM(tr.tax_rate) as tax_rate "; } $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id"; if ( (DISPLAY_PRICE_WITH_TAX == 'true') && (tep_not_null($pfrom) || tep_not_null($pto)) ) { if (!tep_session_is_registered('customer_country_id')) { $customer_country_id = STORE_COUNTRY; $customer_zone_id = STORE_ZONE; } $from_str .= " left join " . TABLE_TAX_RATES . " tr on p.products_tax_class_id = tr.tax_class_id left join " . TABLE_ZONES_TO_GEO_ZONES . " gz on tr.tax_zone_id = gz.geo_zone_id and (gz.zone_country_id is null or gz.zone_country_id = '0' or gz.zone_country_id = '" . (int)$customer_country_id . "') and (gz.zone_id is null or gz.zone_id = '0' or gz.zone_id = '" . (int)$customer_zone_id . "')"; } $from_str .= ", " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; It is not the same. ALSO Even though section 9 and on may be need only if upgrading, it seems it should be stated so. Section 9 9. admin/includes/functions/general.php New chapter since v1.3 Find function tep_remove_product. Inside this function find: tep_db_query("delete from " . TABLE_CUSTOMERS_BASKET_ATTRIBUTES . " where products_id = '" . (int)$product_id . "'"); and immediately after add: // START: Extra Fields Contribution tep_db_query("delete from " . TABLE_PRODUCTS_TO_PRODUCTS_EXTRA_FIELDS . " where products_id = " . (int)$product_id); // END: Extra Fields Contribution This is not in the oscommerce file. also Section 10 refers says 10. catalog/advanced_search.php Find the lines at the top of the file that read as follows: <link rel="stylesheet" type="text/css" href="stylesheet.css"> <script language="javascript" src="includes/general.js"></script> a line with <script language="javascript" src="includes/general.js"></script> does not exist the 1st one does.
  9. A few shipping issues I have been trying to solve with no success. 1) Supplier ships products by in case packs if full case qtys are ordered. and different products have different qtys and weights. like one case of 100ft svga cables is 39 lbs while 400 1ft c5e is 21 lbs. Oscommerce calculated the shipping at fixed max box size. Which falls apart when customers purchase larger qtys. Any Ideas? or know of any contributions that are qty based PER product SKU? I have looked at many contributions and also Enhanced Multi Vendor Shipping http://www.oscommerce.com/community/contributions,1928 Multi Vendor Shipping http://www.oscommerce.com/community/contributions,969 From what I have read from searches and forum discussions neither seem to do what I am looking for. Unless I missed something. 2)Also, on the flip side I would like to give the customers ordering only one of a specific item the option to ship a specific for that item if one of that item ordered ( and no other items) For example, one of item x can fit in a priority mail envelope. They have the additional option to pick that as a shipping method. the contribution that seems to do this is Individual Product Shipping Prices - v1.0 Yet I also have to be concerned with interaction with other shipping modules. If known, any other options? Any insight is appreciated.
×
×
  • Create New...