Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

csquat

Archived
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Real Name
    Chris

csquat's Achievements

  1. I have another question. I am trying to install the GV options, but when I go to the modules>order total> it only shows the standard ones. I have ot_coupon and ot_gv.php in the modules directory but they are still not showing up. Is there somewhere I can check to make sure that the right directories are being loaded. The rest of the package is working just fine, just the install part seems to be missing. thank you -chris
  2. that worked, I had a bad entry for some reason. Thank you
  3. I am working with the latest OSCart and the Latest CCGV. When I use the admin control to send out a GV to someone the url they receive to redeem the GV goes to http://website/admin/gv_redeem.php?gv_no=xxxxx or visit http://website/admin I was wondering how to get the admin part out of the automatic email, since that is the wrong URL. If you manualy remove the admin from the url in the browser, the link works fine, http://website/gv_redeem.php?gv_no=xxxxx thank you for any help.
  4. I want to know if there is a module that will allow me to offer a special of the month (i.e. Buy any product and get a specific product for only 5.00 more) So if a person puts item one in the cart and then puts the specific sale item in the cart the specific item comes up for the discount price, as long as the original product is still there. thank you
  5. not sure about articles, but I got the same thing working for list of manufacturers. When you click on the specific manufacturer it will display it in the title bar. Just replace the following section in the index.php at the catalog root. <title><?php echo TITLE; ?></title> replace with <?php if (isset($manufacturers_id)) { $man_id = $HTTP_GET_VARS['manufacturers_id']; $manufacturers_info = tep_db_query("select manufacturers_name from " . TABLE_MANUFACTURERS . " where manufacturers_id='". (int)$man_id ."'"); $manufacturers_info_values = tep_db_fetch_array($manufacturers_info); echo '<title>' ; echo $manufacturers_info_values['manufacturers_name']; echo '</title>'; } echo '<title>'; echo TITLE; echo '</title>'; ?> you can probably canabalize this code to get the article stuff you are looking for.
  6. I am trying to get the affiliate_signup.php to show company information. I see that there is a function that determines if the affiliate is a personal or company account. How do I get the company settings to appear. I am intersted in the Tax ID field so we can issue tax statements to those companies.
  7. Check out this URL. The guy shows the code snipit to replace to get the name of the product to show up in the title bar. http://www.oscommerce.com/forums/index.php?sho...=0entry410080
×
×
  • Create New...