Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ajeh

Archived
  • Posts

    5,997
  • Joined

  • Last visited

Everything posted by Ajeh

  1. Oh ... it could work ... if you like doing a lot of re-writting and re-coding and modifications that are gonna change a bunch more times until the current snapshot is humming happily along ... 8) And I could win the lottery or find my patron sugar-coder daddy ... :wink:
  2. I'd stick with 05-18-2003 as that is a very stable snapshot ... until a few of the kinks are worked out of the current snapshot with all the new account changes.
  3. Unitl I hit the create account. Do you have your configure.php handy ... without the password?
  4. I have SEC v1.0a installed - and I deleted that code you mentioned because I did not want that displayed. LOL Is that required? The way to change that so it works is to change: <?php echo PRODUCTS_ORDER_QTY_TEXT; ?> <input type="text" name="cart_quantity" value=<?php echo (tep_get_buy_now_qty((int)$HTTP_GET_VARS['products_id'])); ?> maxlength="5" size="3"><?php echo ((tep_get_products_quantity_order_min((int)$HTTP_GET_VARS['products_id'])) > 1 ? PRODUCTS_ORDER_QTY_MIN_TEXT . (tep_get_products_quantity_order_min((int)$HTTP_GET_VARS['products_id'])) : ""); ?><?php echo (tep_get_products_quantity_order_units((int)$HTTP_GET_VARS['products_id']) > 1 ? PRODUCTS_ORDER_QTY_UNIT_TEXT . (tep_get_products_quantity_order_units((int)$HTTP_GET_VARS['products_id'])) : ""); ?> To read: <?php echo PRODUCTS_ORDER_QTY_TEXT; ?> <input type="hidden" name="cart_quantity" value=<?php echo (tep_get_buy_now_qty((int)$HTTP_GET_VARS['products_id'])); ?> maxlength="5" size="3"><?php echo ((tep_get_products_quantity_order_min((int)$HTTP_GET_VARS['products_id'])) > 1 ? PRODUCTS_ORDER_QTY_MIN_TEXT . (tep_get_products_quantity_order_min((int)$HTTP_GET_VARS['products_id'])) : ""); ?><?php echo (tep_get_products_quantity_order_units((int)$HTTP_GET_VARS['products_id']) > 1 ? PRODUCTS_ORDER_QTY_UNIT_TEXT . (tep_get_products_quantity_order_units((int)$HTTP_GET_VARS['products_id'])) : ""); ?> That just sets the type="hidden" and change the define for PRODUCTS_ORDER_QTY_TEXT to '' Now it will base the Add button on the Quantity Min or Units in a logical manner still ... 1 or whatever you have those settings set to. Presently, with the code missing the value of how many to add to the cart, even being 1 is not there as the definition is gone for it on product_info.php and application_top.php gets a value of 0 when you click the button to add to the cart.
  5. On the products_id 29 that does not add. You seem to have parts of my SEC v1.0 or v1.0a perhaps loaded. But I do not see the quantity box on product_info.php Does this just look similar? Or do you perhaps have only some of the code loaded? If you added SECv1.0a there is a folder /CHANGED 05_18_2003 that accidentally got added to this zip. That should be ignored as it takes the files back to 05-18-2003 on a lot of the pages. product_info.php being one of them.
  6. That is a sample HTML auto add file in the /prodtext directory. Rename the file in there .txt and it will go away. I recommend rename in case you later want to use this feature and need to see an example.
  7. I hear you ... 8) You have the option for top or bottom. I have not tried fooling with placement to get it to work on top and bottom at the same time. New version of SEC is just around the corner ... couple new features ... few *cough* bug fixes ... neat stuff like that. LOL ... have to drag it over here and ask Harald to load it ... :wink:
  8. Coolness ... better you than me ... 8) Otherwise I'd have to hunt this down and get out a bug fix even faster ... :shock: I have a couple peices of groovy code I am working on and trying to finish that I'd like to put out in the next release which looks like it's going to be tomorrow or the next day. Somewhere I forgot this was a holiday weekend and people sort of like ... you know ... kept showing up for celebrating ... go figure?!
  9. Allan ... go to contributions ... search on Header Tags Go to the Header Tags Controller ... in that same section is the Admin Richard wrote about two downloads below the Header Tags Controller itself.
  10. Ain't it amazing what one silly little line or two does to make the whole store look like it's broken? :D Wonder how I know this? 8)
  11. Umm ... are any of those titles in any of my language files? I appear to have titles for all 3 languages in the Admin ... perhaps you ... sort of like ... well ... broke something? :wink:
  12. Eekks!! Left one of those in there did I? :shock: I had that whole thing done up at one point then found myself losing the code. Note how the IF statement is written on those so data is not lost when a section is turned off. Thought I had a line for each one. I will check the LPD_MANUFACTURERS_ID and if written right, add it to the sql file, other wise, I will see what else needs to be done to make it one of the options. Thanks for finding that one! As to regular image and MO_PICS on the LPD ... it could be written in two parts, but you have to be very, very careful that the IF statements are grabbing the write chunks of data when each is turned off. I make test products with 13 images that are more or less numbered. Then I load them all and then start playing with the peices and parts on turning things on/off to see what I lose. Originally I was driving myself up a wall trying to get the LPD working properly ... then it came to me in a dream ... :wink: Felt like a total idiot once I saw what I was doing wrong. Little things like the word *echo*, silly little typos, things like that ... php is so darn fussy ... 8)
  13. Well ... gosh ... 8) With all of the things tied in together between the Attributes Sorter and Copier and the Discounts and other payment features ... it was way easier to just put it all together than try to break them apart. :D Writing and maintaining these add-ons is like ... umm ... well ... kinda tough and terribly time consuming ... so ... well ... when I had to decide who should suffer ... me? or you? ... guess who won?! :shock: Most everything has a toggle to turn off things you might not want. And the other things, well ... happy hunting tonto ... :wink:
  14. I would not expect the two to conflict. Do you have a URL to peek at?
  15. That menu is basically this menu with just an image look to it due to the stylesheet. http://www.8thoctave.com/osc_freecall
  16. You are missing one of the require statements for that code. In the README.txt ...
  17. Heck ... then we couldn't learn anything if you were not left talking to yourself and answering yourself and letting us know your errors/solutions. :D Thanks for updating us on the status of the errors. It really does help a lot of folks out who might run into similar errors. Plus it let's me know I don't have a bug to fix. 8)
  18. Had you intended that the same link be used for both cases? It looks like it was orriginally different. Yes ... until I had written a second version of the layout for allpriods ... I just had not finished it yet but wanted the IF in there to remind me ... 8)
  19. I'd go back to 05-18-2003 until the new account features are all in their places with bright shining faces ... 8) You can get the osCommerce 05-18-2003 snapshot at: http://pages.prodigy.net/ladonh/tep_snapsh...ot-20030518.zip
  20. Did you already modify your MySQL file for a newer snapshot than 05-18-2003?
  21. I have a couple bugs that I am working out. I hope to have a new release on 05-18-2003 with a few additional features and some bug fixes. Should be tomorrow or tuesday ... There are missing files for the HTML editor in the categories.php ... kind of forgot to put them in there ... :shock: What type of features are you concerned about being missing?
  22. I'd go for the fresh install on a clean 05-18-2003 as this is a very stable snapshot. The /CHANGED 05_18_2003 is a folder I forgot to delete from SEC v1.0a Pretend it is not there ... 8) Load: osC snapshot 05-18-2003 /NEW FILES /CHANGED FILES Don't forget the edits from README.txt and the sql files if you have not loaded those already.
×
×
  • Create New...