Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

John Tweedlie

Pioneers
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    John Tweedlie

John Tweedlie's Achievements

  1. I have install Ultrapics 2.07 with lightbox. The add-on is working, sql is all good and lightbox is working great. The problem is that when I add multiple images when editing a product the first 3 images (small, med, large) work fine. But when I add extra images below in the selection boxes for xl image 1, xl image 2 etc., they dont appear on the preview page or when i click update and view the image it does not show the extra images! I had a look it the sql database and it has all the details of all the extra images. I changed all the relevant parts found in other help pages such as change: rel="lightbox" to rel="lightbox[product]" etc. Does anyone have any ideas what i could be missing or not configured? Cheers
  2. I added the jquery no conflict script on the product info page in between the head.
  3. Did you figure it out? I am having the same issue.
  4. Turns out it was the category id number in the sql database!
  5. Hi, I have been able to get the popupwindow for the product item, when 'click to enlarge' is pressed, to appear in a fancybox window. This is great provided that the image size is relevant to the window size. I have a lot of product where the image sizes have to be different. I have been trying to get fancybox to resize itself based the content but all the functions relating to autoScale, resize, autoDimensions etc. are not working. When the thumbnail is clicked nothing happens. I am lost and have been wading through page after page of resizing solutions but none of them have worked for me so far and most of them I just don't understand as I have only been learning for a few months. Can someone help? My website is www.woool.nl/practice/catalog The first part of the product_info.php is as follows:- <?php /* $Id: product_info.php 1739 2007-12-20 00:52:16Z hpdl $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO); $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); $product_check = tep_db_fetch_array($product_check_query); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <?php require(DIR_WS_INCLUDES . 'header_includes.php'); ?> <script type="text/javascript"> function popupWindow(url) { $.fancybox({ 'type': 'iframe', 'href': url, 'scrolling': 'no' }); } </script>
  6. Checked all <? for missing php. It's all there. Realised though, after trying to install for ages, that i dont actually need that contribution so have given up. Thanks for the reply though. Cheers
  7. Hi, I just installed Ajax Attribute Manager v2.8.2 beta. All the files uploaded correctly, all files in the correct place and checked 3 times the installation code for errors - all good. Unfortunately i get this message when editing product:- fweewThis will overwrite this products current options and cannot be undone.'); define('AM_AJAX_NEW_TEMPLATE_NAME_HEADER', 'Please enter a new name for the new Template. Or...'); define('AM_AJAX_NEW_NAME', 'New Name:'); define('AM_AJAX_CHOOSE_EXISTING_TEMPLATE_TO_OVERWRITE', ' ... ... Choose an existing one to overwrite'); define('AM_AJAX_CHOOSE_EXISTING_TEMPLATE_TITLE', 'Existing:'); define('AM_AJAX_RENAME_TEMPLATE_ENTER_NEW_NAME', 'Please enter the new name for the %s Template'); define('AM_AJAX_PROMPT_DELETE_TEMPLATE', 'Are you sure you want to delete the %s Template? This cannot be undone!'); //attributeManager.php define('AM_AJAX_ADDS_ATTRIBUTE_TO_OPTION', 'Adds the selected attribute on the left to the %s option'); define('AM_AJAX_ADDS_NEW_VALUE_TO_OPTION', 'Adds a new value to the %s option'); define('AM_AJAX_PRODUCT_REMOVES_OPTION_AND_ITS_VALUES', 'Removes the option %1$s and the %2$d option value(s) below it from this product'); define('AM_AJAX_CHANGES', 'Changes'); define('AM_AJAX_LOADS_SELECTED_TEMPLATE', 'Loads the selected template'); define('AM_AJAX_SAVES_ATTRIBUTES_AS_A_NEW_TEMPLATE', 'Saves the current attributes as a new template'); define('AM_AJAX_RENAMES_THE_SELECTED_TEMPLATE', 'Renames the selected template'); define('AM_AJAX_DELETES_THE_SELECTED_TEMPLATE', 'Deletes the selected template'); define('AM_AJAX_NAME', 'Name'); define('AM_AJAX_ACTION', 'Action'); define('AM_AJAX_PRODUCT_REMOVES_VALUE_FROM_OPTION', 'Removes %1$s from %2$s, from this product'); define('AM_AJAX_MOVES_VALUE_UP', 'Moves option value up'); define('AM_AJAX_MOVES_VALUE_DOWN', 'Moves option value down'); define('AM_AJAX_ADDS_NEW_OPTION', 'Adds a new option to the list'); define('AM_AJAX_OPTION', 'Option:'); define('AM_AJAX_VALUE', 'Value:'); define('AM_AJAX_PREFIX', 'Prefix:'); define('AM_AJAX_PRICE', 'Price:'); define('AM_AJAX_WEIGHT_PREFIX', 'Wgt.Prefix:'); define('AM_AJAX_WEIGHT', 'Weight:'); define('AM_AJAX_SORT', 'Sort:'); define('AM_AJAX_ADDS_NEW_OPTION_VALUE', 'Adds a new option value to the list'); define('AM_AJAX_ADDS_ATTRIBUTE_TO_PRODUCT', 'Adds the attribute to the current product'); define('AM_AJAX_DELETES_ATTRIBUTE_FROM_PRODUCT', 'Deletes attribute or attribute combination from the current product'); define('AM_AJAX_QUANTITY', 'Quantity:'); define('AM_AJAX_PRODUCT_REMOVE_ATTRIBUTE_COMBINATION_AND_STOCK', 'Removes this attribute combination and stock from this product'); define('AM_AJAX_UPDATE_OR_INSERT_ATTRIBUTE_COMBINATIONBY_QUANTITY', 'Update or Insert the attribute combination with the given quantity'); define('AM_AJAX_UPDATE_PRODUCT_QUANTITY', 'Set the given quantity to the current product'); //attributeManager.class.php define('AM_AJAX_TEMPLATES', '-- Templates --'); //---------------------------- // Change: download attributes for AM // // author: mytool //----------------------------- define('AM_AJAX_FILENAME', 'File'); define('AM_AJAX_FILE_DAYS', 'Days'); define('AM_AJAX_FILE_COUNT', 'Max. downloads'); define('AM_AJAX_DOWLNOAD_EDIT', 'Edit download option'); define('AM_AJAX_DOWLNOAD_ADD_NEW', 'Add download option'); define('AM_AJAX_DOWLNOAD_DELETE', 'Delete download option'); define('AM_AJAX_HEADER_DOWLNOAD_ADD_NEW', 'Add download option for \"%s\"'); define('AM_AJAX_HEADER_DOWLNOAD_EDIT', 'Edit download option for \"%s\"'); define('AM_AJAX_HEADER_DOWLNOAD_DELETE', 'Delete download option from \"%s\"'); define('AM_AJAX_FIRST_SAVE', 'Save Product before adding options'); //---------------------------- // EOF Change: download attributes for AM //----------------------------- define('AM_AJAX_OPTION_NEW_PANEL','New option:'); //---------------------------- // EOF Change: options as images AM by (mortal) //----------------------------- define('AM_AJAX_OAI_SELECT', 'Choose image: '); define('AM_AJAX_OAI_SELECT_MANAGER', 'Find image'); define('AM_AJAX_OAI_STATUS', 'Use images: '); define('AM_AJAX_OAI_STATUS_IMGALT', 'Use images to display values'); //---------------------------- // EOF Change: option type for AM by (mortal) //----------------------------- define('AM_AJAX_OPTION_TYPE', 'Option type?'); define('AM_AJAX_OPTION_TYPE_SIZE', 'Field size?'); define('AM_AJAX_OPTION_TYPE_COMMENT', 'Comment'); //---------------------------- // EOF Change: edit/delete options and vaules for AM by (mortal) //----------------------------- define('AM_AJAX_PROMPT_DELETE_OPTION','Delete this option and all child values and delete the option from all products using it \"%s\"'); define('AM_AJAX_PROMPT_DELETE_OPTION_VALUE','Delete this value and remove it from the products using it\"%s\"'); define('AM_AJAX_ENTER_EDIT_OPTION_VALUE_NAME', 'Edit value'); define('AM_AJAX_ENTER_EDIT_OPTION_NAME', 'Edit option'); ?> Any ideas? Would it be incorrect pathways in the config_tinybrowser.php? I am lost! Cheers, John
  8. Hi, I have installed the Freecats module to offer free shipping with certain categories. The module is installed on the Admin panel, I have set the category for free shipping. When I select a product from that category and try to check out it does not give the free shipping option. It uses the zone rate option that I have set up. Any ideas on why this could be happening? Please note I am a complete noob. My site is: www.woool.nl/practice/catalog. The free shipping is for the workshops & tuition category. Cheers.
×
×
  • Create New...