Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

nrlatsha

Members
  • Posts

    486
  • Joined

  • Last visited

Everything posted by nrlatsha

  1. My version of the contrib tested with MS2. This is starting to sound like a problem with MS1...
  2. Do you have a copy of the code you were originally using? The entire part from the popup function to the stripslash function.
  3. Yup, that is the only code that needs updated, everything else stays the same.
  4. cdubshon had the product serial number contrib installed, but the insert for sql was missing. Added and fixed.
  5. cdubshon had the product serial number contrib installed, but the insert for sql was missing. Added and fixed.
  6. onliner - Which version of EZ do you have installed? Do you have a link to see it at? Or is this just on a testing server?
  7. lostxpinoy - There shouldn't have been any mods made to the price gross field for updating tax, I'd have to take a look at your categories.php file to determine what caused that. But then again, you said you reverted to your backup files (I love those files!) and it still happened. Forgive me, but the next quesiton I'd have to ask is if you are selecting "taxable goods" under the tax class field. I updated the instructions for the code snippet you placed. I have no idea how that one stayed in there. I looked at new categories.php files and found my instructions have been off since the inception of my mods to this contrib. I'm surprised nobody else found that one. The part about EZier new decimal places will stay there unless you go into your dbase and kill it. This will only affect decimal places for this contribution. Is it still showing 4 decimal places on your products pages?
  8. New Version out there 3.3 http://www.oscommerce.com/community/contributions,1310 Change notes: 17 Apr 2004 15:35:59 (1) Fixed incorrect functions calls for "display_price" for those without customer discount contribution. (2) Fixed inforrect input field for categories.php.
  9. catalog/includes/languages/english/checkout_success.php
  10. I saw a post earlier - somebody wanted to know some code for click count. Have a simple one ready to go. SQL INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('', 'User Tracking (Min Click Count)', 'MIN_CLICK_COUNT', '1', 'Minimum click count to display<br>(SET to 0 for all)', 999, 15, '2003-03-03 11:19:13', '2003-02-09 21:20:07', NULL, NULL); Changes to admin/user_tracking.php: Look for (line 140): $listed=0; if ($results) while (($ut = each($user_tracking)) && ($listed++ < $LIMIT_DISPLAY_SESSIONS)) { $time_online = (time() - $ut['value']['time_entry']); if ( ((!$HTTP_GET_VARS['info']) || (@$HTTP_GET_VARS['info'] == $ut['value']['session_id'])) && (!$info) ) { $info = $ut['value']['session_id']; Change to: $listed=0; if ($results) while (($ut = each($user_tracking)) && ($listed++ < $LIMIT_DISPLAY_SESSIONS)) { if (count($ut['value']['last_page_url']) > MIN_CLICK_COUNT) { $time_online = (time() - $ut['value']['time_entry']); if ( ((!$HTTP_GET_VARS['info']) || (@$HTTP_GET_VARS['info'] == $ut['value']['session_id'])) && (!$info) ) { $info = $ut['value']['session_id']; Look for (line 272): } ?> Change to: } } ?> Thats it, admin settings are defaulted to clicks greater than 1. Not pretty, but it works. Did I mention to back up?
  11. New version of EZier out here: http://www.oscommerce.com/community/contributions,1310 Change notes: 15 Apr 2004 05:00:59 (1) Updated instructions with completely new code (2) Works with special prices now! (3) This release will work if you do/don't have customer contrib installed. Don't need a sep mod (4) For MS2, if you need it ported for the CVS version, lemme know and I'll post the fix here. As always, questions, comments suggestions, post em here... This does not modify the customer discount contrib as I stated before. Just updated for specials... Noel
  12. gbreynol - I'm with ya, and yes, you are right, I will update the instructions, good catch. Maz - I'm working on a new version that will work with special prices and customer discount contrib. Should be done in a couple of days, if I didn't have this damned paying job, I'd be done with it. 13 hour nite-shifts just don't allow enough time to update code. Also trying to modify customer contrib so it will take discount off of special prices, this is where I'm finding the hard part... I'll post the update here when I'm done with it.... I might just give up on the customer contrib one and just make this compat with special prices... Noel
  13. Post your EZier New Fields comments, suggestions and problems here. I receive lots of email on this contrib and thought it would be best to start answering publicly. Get it here: http://www.oscommerce.com/community/contributions,1310 Basically it does this: Retail Price : $ 79.99 Our Price : $ 39.99 You Save: 50% I'll get around to the questions ASAP. :D Noel
  14. Couple contribs for linkpoint. They don't make you buy a wrapper anymore. Search for linkpoint in the contribs section. Easy install too. HTH Noel
  15. do a search on cvv in contribs section...
  16. I'm not sure what you mean by it just shows under the order total? Are you saying it's not deducting the amount at all? Or is it showing that it is, but really isn't, I'm confused. Do you have those mods turned on in admin? Lemme know Noel
  17. You'll have to go back in and re-apply the 3 image contrib. Specifically it sounds like you need to concentrate on tep_db_query("select areas. Keep in mind all contribs aren't going to be straight forward after you have loaded some, the more you put in, the more you have to look at the code in depth. HTH Noel
×
×
  • Create New...