Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

surfalot

Pioneers
  • Posts

    2,312
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by surfalot

  1. the first thing I see is that you have no model number in the model number column. A unique model number is required in to allow the code to find the specific product to update or create. If you have additional issues, fix that one and post a new request at that time, good luck!
  2. you need to link a file somewhere (as is says in the how to ask for help). the board changes it so I can't look for some of the problems.
  3. works well for me. could have save some typing and just offered the above desc and a sample of the file.:)
  4. all I can do is guess then since you haven't provided a snip of your file. Could be any of these: permissions, ownership, no header row, empty file.
  5. I can help, but you need to help me help you. Look at the Support section of the docs in any version I uploaded. You will find a section called "how to ask for help".
  6. If you are allowing AI to manage your image resizing, then you want to have both settings that refer to "restrict image" to be false. Those settings force your images (through html) to be the sizes specified in the image size settings (like the default shop code does). In this case, the image was not large enough to be resized smaller, so since the image restriction settings are true, the popup makes the image larger then is should be using HTML, but the code calculates the image size as normal and makes the box a size the fit the actual dimensions of the image. hope that makes sense
  7. that is correct, that combination is not available in the stock contribution. I didn't see a reason to have 2 completely separate full rollover menus. Seemed overkill to me.
  8. use the popup instead of the lightbox. Sorry at current the lightbox is what it is.
  9. actually v2.2.0 sorry, you have the version before lightbox. Then the image used with the roll-over menu is the large (popup) image. When the rollover menu is not being used, the image displayed on the product info page is the medium (display) image.
  10. if there is a screenshot of the settings, it's old, sorry. If you are looking to have the roll-over images on the product page, you have to set the Product Info: Product Image Behavior to product_info. That will give you a roll-over menu of thumbs under the main image. If you have the lightbox enabled, the main image will be the medium image or "display" image. Then when you click, a lightbox will show with the large (popup) image. the file is admin/categories.php
  11. that is true, there is no options "Show Thumbnail menu on product page", but what does that have to do with not being able to change your options? sounds to me like you haven't merged this correctly. the only thing I can suggest is to take another wack at it. There should only be one that is labeled that. To be clear, in that section you are replacing a small section of code there, as apposed to simply adding some code.
  12. 1. my guess is you have the configuration options installed twice. You can try running the configuration utility and removing the database setup. Make sure it did removing in the shop configuration. Then run the configuration utility again. ** backup the database before just in case ** 2. if the fields for the other 2 images sizes are there, but don't let you select an image, I'm geussing you have the option to automatically create thumbs enabled. That is disable the two larger images sizes on the product edit page.
  13. did you do this in the installation instructions? -- You may also wish to run the following in your SQL tool, such as phpMyAdmin (provided by your host). It is not necessary for normal operation, but some have experienced extra long image names because of the image organization included with this contribution. some image names may be cut-off because there isn't enough room in the products_image field of the default shop products table. -- change products_image length to 255. ALTER TABLE `products` CHANGE `products_image` `products_image` VARCHAR( 255 ) NULL DEFAULT NULL; --
  14. Looks like RusNN made the mistake of uploading before posting. Always best to discuss before uploading. I could have told him the fix was bad and avoided this problem. His mistake is that the missing function he used only exists in the public side of the shop. To complete his fix you would need to copy the function "tep_get_address_format_id" from catalog/includes/functions/general.php to catalog/admin/includes/functions/general.php
  15. sounds like the thumb sized image isn't being set in the database. I would need your settings and the image to try to to reproduce the problem
  16. did you ask AI to resize the image for you when uploading?
  17. that's a bug, watermarks are only being applied when AI does image resizing.
  18. that is normal behaviour. not necessarily ideal, but that is normal
  19. the format you should use for the date is mentioned in the Requirements section of the EP docs.
  20. when you have missing columns in the attributes, most often the cause is you have some bad data in your database. It's also possible QT-pro has changed making EP incompatible.
  21. Dear Whits-end, you may want to look at the "how to ask for help" sub-section in the Support section of the docs. When you have complied with those suggestions, someone may be able to help you further with your problem. -me.
  22. there must be something you missed. did you double check to make sure the file changes you made were uploaded? The link has to be there if you made the correct changes and uploaded them. /admin/includes/boxes/customers.php is the file with the link
  23. easypopulate does not fetch images from other sources. you have to upload the images to your server and reference those images locations in the EP file. Please do read a few of the most recent pages of the topic before posting. (along with the EP documentation)
  24. you can upload the columns in any order. Unfortunately there isn't any easy way to reorder the columns when downloading. But once you open it in a spreadsheet software you can easily move the column by dragging or cut/paste. this change to easypopulate.php may help for the custom download. The full download would be similar. $filelayout['v_products_model'] = $iii++; if (!empty($_GET['epcust_status'])) { $filelayout['v_status'] = $iii++; } foreach ($languages as $key => $lang){ if (!empty($_GET['epcust_name'])) { $filelayout['v_products_name_'.$lang['id']] = $iii++; } if (!empty($_GET['epcust_description'])) { $filelayout['v_products_description_'.$lang['id']] = $iii++; } if (!empty($_GET['epcust_url'])) { $filelayout['v_products_url_'.$lang['id']] = $iii++; } foreach ($custom_fields[TABLE_PRODUCTS_DESCRIPTION] as $key => $name) { if (!empty($_GET['epcust_' . $key])) { $filelayout['v_' . $key . '_'.$lang['id']] = $iii++; } } } if (!empty($_GET['epcust_image']) || !empty($_GET['epcust_add_images'])) { $filelayout['v_products_image'] = $iii++; if (!empty($ep_additional_layout_product)) { eval($ep_additional_layout_product); } } foreach ($custom_fields[TABLE_PRODUCTS] as $key => $name) { if (!empty($_GET['epcust_' . $key])) { $filelayout['v_' . $key] = $iii++; $ep_additional_layout_product_select .= 'p.' . $key . ' as v_' . $key . ','; } } change to $filelayout['v_products_model'] = $iii++; foreach ($custom_fields[TABLE_PRODUCTS] as $key => $name) { if (!empty($_GET['epcust_' . $key])) { $filelayout['v_' . $key] = $iii++; $ep_additional_layout_product_select .= 'p.' . $key . ' as v_' . $key . ','; } } if (!empty($_GET['epcust_status'])) { $filelayout['v_status'] = $iii++; } foreach ($languages as $key => $lang){ if (!empty($_GET['epcust_name'])) { $filelayout['v_products_name_'.$lang['id']] = $iii++; } if (!empty($_GET['epcust_description'])) { $filelayout['v_products_description_'.$lang['id']] = $iii++; } if (!empty($_GET['epcust_url'])) { $filelayout['v_products_url_'.$lang['id']] = $iii++; } foreach ($custom_fields[TABLE_PRODUCTS_DESCRIPTION] as $key => $name) { if (!empty($_GET['epcust_' . $key])) { $filelayout['v_' . $key . '_'.$lang['id']] = $iii++; } } } if (!empty($_GET['epcust_image']) || !empty($_GET['epcust_add_images'])) { $filelayout['v_products_image'] = $iii++; if (!empty($ep_additional_layout_product)) { eval($ep_additional_layout_product); } }
  25. this contribution doesn't have a send order confirmation, you need the Order Editor topic. Please don't cross post.<_<
×
×
  • Create New...