Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jgkiefer

Archived
  • Posts

    161
  • Joined

  • Last visited

Everything posted by jgkiefer

  1. Are there any contributions that let you list rebates?
  2. I am using BTS affiliate and when trying to login as an affiliate I receive the following error: Warning: main(templates/content/CONTENT_AFFILIATE.tpl.php) [function.main]: failed to create stream: No such file or directory in /home/kiesysc/public_html/QC3/templates/main_page.tpl.php on line 47 Fatal error: main() [function.main]: Failed opening required 'templates/content/CONTENT_AFFILIATE.tpl.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/kiesysc/public_html/QC3/templates/main_page.tpl.php on line 47 Could someone please help me understand this?
  3. I managed to get the ADMIN ACCESS with LEVEL contribution installed and working except for the Administrator Groups. When I click on => Administrator => Member groups I get the following error: Fatal error: Call to undefined function: tep_array_merge() in /home/kiesysc/public_html/qc2/admin/admin_members.php on line 352 Could someone help me by telling me where I may find the code to correct this? I have been at this since yesterday and finally decided it was time to ask for help.
  4. Hello I have set the featured products display to true in admin config. Could you please tell me where to add products? I must be overlooking something somewhere.
  5. Could someone please direct me to where I will find information on how to use the BTS with OSC affiliate? I know I saw it somewhere. I have searched and searched and cannot find the info again. Thanks-
  6. I need help - :o I am using BTS and want to use the minium order mod. I installed the minium order mod and set a minium amount. Everything works except that the reason is not being displayed. I inserted this code into the shopping_cart.tpl.php instead of shopping_cart.php: In shopping_cart.php, around line 162 should be: <?php if ($any_out_of_stock == 1) { if (STOCK_ALLOW_CHECKOUT == 'true') { ?> <tr> <td class="stockWarning" align="center"><br><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></td> </tr> <?php } else { ?> <tr> <td class="stockWarning" align="center"><br><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></td> </tr> <?php } } ?> <tr> replace the last line ( <tr>) with: <?php // minimum order total if ($order->info['subtotal'] <= MIN_ORDER_AMOUNT) { ?> <tr> <td class="stockWarning" align="center"><br><?php echo TEXT_ORDER_UNDER_MIN_AMOUNT; ?></td> </tr> <?php } ?> <tr> Anyone know how I can get this to work?
  7. This new contribution seem to be just what we're looking for. Manual Order Entry System :D
  8. Me too! I am assuming that there is an addition to the database that was not included.
  9. I really would like to see this developed also.
  10. I am still trying to exclude certin info boxes from the home page using "if" statements, any ideas?
  11. BTS and infoboxes. I would like to know how to write an "if" statement to have an info box display only on the home page, and another "if" statement to not have one display on the home page. I am not sure how to write these when using the BTS mod. :cry:
  12. Does anyone know if there is an updated version of Hidden Products v1.0 for 2.2?
  13. Has anyone come up with a solution for this?
  14. I am having session problems. Everything seems to go smooth, but if I stand idle for awhile and try to do something I receive session errors and headers already sent errors. I am wondering if it is in the cookie expiration settings? Has anyone else experienced something like this because I don't quite know how to explain it. :cry:
  15. It would really be great if someone has updated the featured Product contribution to work with 2.2 and the Basic Template Structure contribution. The BTS has changed so many of the OSC files that the Featured Products docs are hard to follow. :(
  16. First I would like to say thanks so much for this wonderful and much needed contribution! I have two questions and they are both on the same subject - using the Basic Template Structure mod and conditional statements in the left column. I am only using the left column and want to display some of the right columns info boxes there. To save space I DO NOT want the bestsellers to display on the home page. What would be the appropriate "if" statement be for this and how would I insert it into the following code? if (isset($HTTP_GET_VARS['products_id'])) { if (tep_session_is_registered('customer_id')) { $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$customer_id . "' and global_product_notifications = '1'"); $check = tep_db_fetch_array($check_query); if ($check['count'] > 0) { include(DIR_WS_BOXES . 'best_sellers.php'); } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'best_sellers.php'); } My second question is how to use an "if' statement to only have the affiliate info box display ON the front page? require(DIR_WS_BOXES . 'affiliate.php'); I am sure there is an easy way to do this I just don't know how. :?
  17. There has to be an easier way. Is there a mod to create a hidden category? Then just create a custom category called custom orders. That way we could create custom products/packages with hidden product? That way we would have some predefined packages/products for the admin and also a list of all custom order packages/products. Does this seem realistic?
  18. Would it be able to stay as part of their order history? or would it disappear after checkout?
×
×
  • Create New...