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.
Re: AJAX IMAGE Swapper support thread
Quote:
Originally Posted by
shocker
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
I'm in Indonesia also. What a coincidence?
thanks for your help.
Whoa! What a coincidence! lol
Re: AJAX IMAGE Swapper support thread
Quote:
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?
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
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! :frusty::cry:
see: http://nahidfashions.com/test_boutiq...&products_id=8
Re: AJAX IMAGE Swapper support thread
Does anyone have a working example ?
Many thanks Andrew
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.
Re: AJAX IMAGE Swapper support thread
Quote:
Originally Posted by
dealbyethan.com
I love your setup, Dealbyethan,... anyone know what this is done with: IH2, or combination of IH2 & AJAX IS?
Re: AJAX IMAGE Swapper support thread
Quote:
Originally Posted by
dbltoe
'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.
:eek:
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.:cry:
1 Attachment(s)
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