Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dchism

Archived
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Real Name
    David

dchism's Achievements

  1. well, as it turns out, it was just a javascript popup and it didn't prevent the coupon from being added. I just diabled the popup so it is a little more seemless.
  2. Ok, there are over 200 pages of posts here and I seem to be unable to get the forum search to come up with anything useful so I'm posting this question anyway :D. I have the system up and running fine. No errors or anything. The problem I have is during checkout. When a customer goes to check out and gets to the payment detail screen and they enter in a coupon code, since the payment is defaulted to credit card, they get an error that they must first enter their credit card information. If they enter the CC info and then enter the coup code (clicking the redeem button), it re-totals correctly and basically refreshes the checkout screen with the new total where they have to enter in their credit card again. Basically, the routine goes: Choose shipping method --> Enter credit card info --> redeem coupon --> re-enter credit card info --> confirm --> checkout. Now, this works but it is very inconvenient for the customer to have to enter and re-enter their CC info. Is this the way this is supposed to work? Is there anyway to have them redeem the coupon prior to having to enter credit card info other than choosing a different payment method that doesn't require user input? Any info would be GREATLY appreciated. Thanks
  3. I dropped back to version 2.76 and it seems to work now. Just an FYI. I still don't understand what the heck was going on. No errors to even point me in the direction to fix it. Weird.
  4. I've had this contribution up and running for a while now but suddenly the Who's Online page opens very slowly (around a 30 seconds to a minute). I haven't installed any recent contribs lately that would impact this. Should I write this off to server probs and wait to see if it clears up or has anyone else had this issue?
  5. Well, I made one of the stores 100% in width and it works perfectly. I'll probably move them all in that direction.
  6. I really hope this isn't too dumb of a question but in the dm_categories.php, you set the sub menu to an absolute position which tends not to play well in differing screen resolutions. If I set it to look good in a high resolution, it overlaps in a low resolution. Is there anyway to use another type of positioning that you know of that would anchor it no matter what resolution is being used? Oh, btw, JUST the contrib I was looking for...excellent work! My site is http://www.teachersorchard.com/classroom (I have mini-stores installed and this is the one I'm using to test it with). Thanks!
  7. Ok, I figured it out. It seems that the vertical lines will have an image height of "1", no matter what you set it in the admin panel, if you have the image proportions contrib installed. In installing the image proportions contrib, you have to edit the html_output.php and it messes it up. I'm working on a work around now. The install file has you do this edit... ...which, in turn, defaults the image height to 1 pixel. I'm not a php whiz so if anyone knows how to fix this quickly, please post it...for now, I just reversed the above instructions and the lines show back up.
  8. I installed this contribution a couple of weeks ago and love it! Somehow, I now have an issue that I'm stumped on. It seems that I have lost my vertical lines and short description in the 2/3 display. I don't know how. I have edited the display a bit (centering) and don't know what I've done to screw this up. Here is my edited code for that display... <?php if ((FEATURED_SET == '2') && (FEATURED_SET_STYLE == '3')) { echo '<table border="0" width="180" cellspacing="2" cellpadding="2"><tr><td width="'; SMALL_IMAGE_WIDTH + 25; echo '" align="Center" valign="top" class="main"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products_array[$i]['id'], 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . $featured_products_array[$i]['image'], $featured_products_array[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><div align="Center"><b><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products_array[$i]['id'], 'NONSSL') . '"><u>' . $featured_products_array[$i]['name'] . '</u></a></b></div>'; if ($featured_products_array[$i]['shortdescription'] != '') { echo $featured_products_array[$i]['shortdescription']; } else { $bah = explode(" ", $featured_products_array[$i]['description']); for($desc=0; $desc<MAX_FEATURED_WORD_DESCRIPTION; $desc++) { echo "$bah[$desc] "; } } echo ' ' . TABLE_HEADING_PRICE . ': ' . $products_price . '<br><a href="' . tep_href_link(FILENAME_DEFAULT, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products_array[$i]['id'], 'NONSSL') . '">' . tep_image_button('add_to_cart_button_green.gif', IMAGE_BUTTON_GREEN_ADD) . '</a></td><td align="right" valign="top" class="main">' . tep_image(DIR_WS_IMAGES . ('pixel_' . VLINE_IMAGE_COLOUR . '.gif'), '','', VLINE_IMAGE_HEIGHT) . '<td></tr></table>'; } ?> When I view the source from the site, it shows the vline_image_height as "1 pixel" but it is set to 145 in the configuration table. In playing around with it a bit, I added an extra '' before VLINE_IMAGE_HEIGHT and it didn't make a difference. When viewing the source, it shows the height still at 1 and after the "1" it has ",145" so it looks like this...height="1",145. The reason I'm stating this is that it is seeing the 145 in the config table but doesn't put it as the height attribute. As far as the description goes, it just doesn't give me anything there and all items have short descriptions. Any help would be appreciated. Thanks
  9. Well, ok, I found the fix to the priceformatter error. I added require(DIR_WS_CLASSES . 'PriceFormatter.php'); to the whos_online.php file and it fixed it. So, if anyone else has this error, this is the fix. BTW, that's the admin/whos_online.php file.
  10. Help! I'm not sure which way to turn on this one. I've looked all the way through this thread and saw one other person having this error.. Fatal error: Cannot instantiate non-existent class: priceformatter in /home3/name/sitename/catalog/admin/includes/classes/shopping_cart.php on line 303 Nobody responded to his post that I could tell. Anybody have any clue on this one? I'm going to continue looking myself but this seems difficult to pin down. Thanks in advance.
  11. I'm using oscommerce for the first time with a Linkpoint gateway. I had some issues getting the Linkpoint API mod to work but it is running successfully. Now, the owner just purchased Linkpoint virtual Check and wants to offer it through her store. Frankly, I haven't a clue how to go about this. I can't really find anything on this site about using lp virtual check. Anyone have any ideas whatsoever? This portion doesn't even have to be that pretty (or seemless)...it just needs to be functional. Thanks in advance
×
×
  • Create New...