Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

toolcrazy

Archived
  • Posts

    1,836
  • Joined

  • Last visited

Everything posted by toolcrazy

  1. You need to go back over your code then. Just a single quote ' or a <tr> in the wrong place will do this. I've done the same thing when I've made a mod or added a mod. Double check your /includes/modules/account_details.php this is probably where you made the error. This is the file that controls this set of fields.
  2. Go into /catalog/includes/application_top.php and check this section. // Control what fields of the customer table are used define('ACCOUNT_GENDER', 'false'); define('ACCOUNT_DOB', 'false'); define('ACCOUNT_COMPANY', 'false'); define('ACCOUNT_SUBURB', 'false'); define('ACCOUNT_STATE', 'true'); Make sure -> define('ACCOUNT_STATE', 'true'); <- is set to true. Just an idea.
  3. Thanks Dreamscape, I knew it, I almost did the changes, but it did work so I didn't. I'll let you know after I fix it, But that is going to have to wait till tomarrow. Thanks again,
  4. Deleting the item did no good. I had to go into phpmyadmin and manualy remove the item. That is the only way I could get rid of it. I also notice that you can still add the same item more than once. Well sorta, it doesn't show it, but in the view wishlist, it show the pic once and says: Displaying 1 to 4 (of 4 items on your wishlist) This is the same item that I clicked on 4 times, but when I click to move it to the shopping cart it adds only one item and clears the wishlist of all the items. mmmm that may seem confusing, if there is only one item clicked 4 times. It clears the wishlist. And, if I click it 7 times it switches to the counter. Is there something I did wrong or ?? The wishlist seems to be working just fine otherwise. You can add a bunch of items But, I do have to say though. I had a wishlist for this wishlist and you seemed to of answered all my wishes. Thanks. I'm sorry if I am confusing you, but, if you need a further explaination, just let me know. pm or post
  5. There are 2 lines you need to add into the /catalog/includes/configure.php I had the same problem, Dreamscapes example above isn't complete. This will fix your first error: define('MAX_DISPLAY_WISHLIST_PRODUCTS', '10'); // How many wishlist items to show per page on the main wishlist.php file define('MAX_DISPLAY_WISHLIST_BOX', '6'); // How many wishlist items to display in the infobox before it changes to a counter And you need to replace a section in /catalog/includes/english.php This will fix your second. // wishlist box text in includes/boxes/wishlist.php define('BOX_HEADING_CUSTOMER_WISHLIST', 'My Wishlist'); define('BOX_WISHLIST_EMPTY', 'You have no items on your Wishlist'); define('IMAGE_BUTTON_ADD_WISHLIST', 'Add to Wishlist'); define('TEXT_WISHLIST_COUNT', 'Currently %s items are on your Wishlist.'); define('TEXT_DISPLAY_NUMBER_OF_WISHLIST', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> items on your wishlist)'); This will fix both your problems. From what I remember.
  6. This is a great contrib, and a much needed upgrade. I wasn't happy with the old wishlist, but it did the job. But one warning, (not a bug though). Make sure all your wishlists in the database are empty, before you do the upgrade. I found out that the new version doesn't show any of the items in the old wishlist. I installed a tested it and couldn't figure out why it was saying I had two items in my wishlist but only showed one. Becuase I had an item from the old wishlist. Thought you would like to know.
  7. Oopps you beat me to it. I hate when that happends.
  8. Netscape 6.2 or above this will work. And IE 5.0 and above. Anything less than that won't work.
  9. Simple. Go to: http://www.phesis.co.uk/modules/news/ And get Ian's loaded v4. It has the header tag contrib already installed. And by the way. You don't need a admin contrib. The header tags are automatic. When you type in a discription on a product it adds it to the meta tags. There is no other interaction needed from you. Cool eh?
  10. I've found it not to be that simple. My knowlege of PHP is very limited and I am still trying to figure out the flow of the system. I've figured out enough to be able to get done what I want, but this is beyond me. Thanks for the help.
  11. Instead of: When you enter the wrong user name or password, you go to the login/signup page. I would like it to refresh the default.php page and insert the words: "You have entered the wrong email and/or password" above the login fields in the login box. I would like to eliminate the login/signup page except when you are purchasing an item then you see it on check out, if you are a new customer or not logged in. I hope I don't have you all confused. I wish I could do this myself, but I don't have the experience with PHP to do it. Any help would be appreciated, Thanks in advance.
×
×
  • Create New...