Page 4 of 79 FirstFirst ... 234561454 ... LastLast
Results 31 to 40 of 786
  1. #31
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    I figured out that the prefix had to be added. Many mods don't mention this. The SQL patch ran succesffully. I have the AJAX Image Swapper under Config. But that's it.

    SQL statements don't add anything fro the AJAX Image Swapper Manager. Did I miss something?

    BTW the folder with the JS libraries are under my website's root dir not my Zen Cart. Is this correct?

    I'm in Indonesia also. What a coincidence?

    thanks for your help.

  2. #32
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    Quote Originally Posted by shocker View Post
    I figured out that the prefix had to be added. Many mods don't mention this. The SQL patch ran succesffully. I have the AJAX Image Swapper under Config. But that's it.

    SQL statements don't add anything fro the AJAX Image Swapper Manager. Did I miss something?

    BTW the folder with the JS libraries are under my website's root dir not my Zen Cart. Is this correct?
    The JS files are normally to be put under includes/modules/pages/product_info, except you know what you are doing.

    There is also a possibility that you have installed other modules disturbing this module's JS files. Look at admin/includes/javascript/ are there any other items than AJAX_image_swapper.js and several default files?

    Quote Originally Posted by shocker View Post
    I'm in Indonesia also. What a coincidence?

    thanks for your help.
    Whoa! What a coincidence! lol
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  3. #33
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    The JS files are normally to be put under includes/modules/pages/product_info, except you know what you are doing.

    There is also a possibility that you have installed other modules disturbing this module's JS files. Look at admin/includes/javascript/ are there any other items than AJAX_image_swapper.js and several default files?
    Ok I've moved the JS into the includes/modules/pages/product_info

    my admin/includes/javascript/ only has the calendarcode.js and dependent files.

    The thing that puzzles me is that the SQL doesn 't create any AJAX Image Swapper Manager. What does that mean?

  4. #34
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    I'm still having some problems with the mod.

    please see

    http://nahidfashions.com/test_boutiq...products_id=13

    As you can see the image never loads.

    I have my photos in the standard locations:

    images/
    images/medium/
    images/large/

    I still have not AJAX Image Swapper Manager under Catalog

  5. #35
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    I have not configuration tool under Admin > Catalog.

    The sql statements doesn't add this
    Code:
    DROP TABLE zen_products_attributes_images;
    
    CREATE TABLE zen_products_attributes_images (
    	image_id INT NOT NULL AUTO_INCREMENT,
    	products_attributes_id INT NOT NULL,
    	image_path VARCHAR(255),
    	image_title VARCHAR(255),
    	image_sort_order INT,
    	PRIMARY KEY(`image_id`)
    );
    
    INSERT INTO zen_configuration_group
    (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible)
    VALUES (NULL, 'AJAX Image Swapper', 'Config options for AJAX Image Swapper', '1', '1');
    
    UPDATE zen_configuration_group SET sort_order = last_insert_id() WHERE configuration_group_id = last_insert_id();
    
    SELECT @last_id :=last_insert_id() FROM zen_configuration_group;
    
    INSERT INTO zen_configuration 
    (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added)
    VALUES 
    ('', 'Small Image Height', 'IMAGE_VIEWER_SMALL_IMAGE_HEIGHT','75','The height of small images in AJAX Image Swapper, shown as thumbnails. Default 75.', @last_id, 1, now()),
    ('', 'Small Image Width', 'IMAGE_VIEWER_SMALL_IMAGE_WIDTH','75','The height of small images in AJAX Image Swapper, shown as thumbnails. Default 75.', @last_id, 5, now()),
    ('', 'Medium Image Height', 'IMAGE_VIEWER_MEDIUM_IMAGE_HEIGHT','300','The height of medium images in AJAX Image Swapper. Default 300.', @last_id, 10, now()),
    ('', 'Medium Image Width', 'IMAGE_VIEWER_MEDIUM_IMAGE_WIDTH','300','The width of medium images in AJAX Image Swapper. Default 300.', @last_id, 15, now()),
    ('', 'Number of Images Shown', 'IMAGE_VIEWER_IMAGES_NUM','3','Number of images shown in AJAX Image Swapper', @last_id, 20, now());
    Please somebody, anybody. HELP!

    see: http://nahidfashions.com/test_boutiq...&products_id=8
    Last edited by shocker; 15 Feb 2008 at 06:35 PM. Reason: added link to site

  6. #36
    Join Date
    Dec 2005
    Posts
    460
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    Does anyone have a working example ?
    Many thanks Andrew

  7. #37
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,464
    Plugin Contributions
    11

    Default Re: AJAX IMAGE Swapper support thread

    'tis working on one of our developing sites BUT does not share well with lightbox (using the fual slimbox). Workaround is to add the default image twice and let the customer use the swapper AND click on the larger images at the bottom of the product description to activate lightbox.

    Working on getting the image call in Swapper to work with slimbox. Otherwise, loaded fine and works well.

  8. #38
    Join Date
    Dec 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    Quote Originally Posted by dealbyethan.com View Post
    I have IH2 installed. Does that mean it's not recommended to be used with this AIS? How do I get them both work together easily? .....

    http://www.endless.com/Clarks-Mens-E...ES6,B000VZUO3W
    I love your setup, Dealbyethan,... anyone know what this is done with: IH2, or combination of IH2 & AJAX IS?

  9. #39
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,464
    Plugin Contributions
    11

    Default Re: AJAX IMAGE Swapper support thread

    Quote Originally Posted by dbltoe View Post
    'tis working on one of our developing sites BUT does not share well with lightbox (using the fual slimbox). Workaround is to add the default image twice and let the customer use the swapper AND click on the larger images at the bottom of the product description to activate lightbox.

    Working on getting the image call in Swapper to work with slimbox. Otherwise, loaded fine and works well.

    CORRECTION!
    AJAX has a bad script call in line 71 of the tpl_modules_ajax_image_swapper_atttr.php file using <script> versus <script type="text/javascript">
    HOWEVER....
    IE7 will sporadically fail and tell the customer that the site cannot be opened because it has resurrected an old bug that makes it fail when a script call occurs inside the body.

    My recommendation to all is to unload till this can be fixed. Too many folks out there have been browbeaten into loading IE7.

  10. #40
    Join Date
    Jan 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    Hi All

    Is there any way to hide the attributes section, i understand is needed but could be hide?

    Thanks for this great mod
    Attached Images Attached Images  

 

 
Page 4 of 79 FirstFirst ... 234561454 ... LastLast

Similar Threads

  1. AJAX BANNER Swapper support thread
    By jaycode in forum All Other Contributions/Addons
    Replies: 19
    Last Post: 11 Oct 2012, 05:55 AM
  2. Any way to import image massively to AJAX Image Swapper ?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 17 Sep 2010, 04:35 PM
  3. Is there any way to massivly upload image to Ajax Image swapper?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 26 Jul 2010, 03:38 PM
  4. Error on AJAX IMAGE Swapper
    By easy665 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 28 Aug 2009, 02:38 PM
  5. AJAX Image Swapper Basic Support
    By jaycode in forum All Other Contributions/Addons
    Replies: 34
    Last Post: 31 Dec 2007, 06:48 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR