Hi, Just purchased the Zoom Plus, it looks great. A couple of minor issues: 1) The Zooming ratio is different between the first image and the rest images, like 1:4 for the first, 1:1.2 for the rest, 2) gap below the images to the text below, probably because of the left column, but I guess it should be designed to allow other column across the image column. Anyone has idea to solve those issues? Appreciated.
New versions of our image zoom modules were released last week to support OpenCart v1.5.1.3 (Magic Zoom™, Magic Zoom Plus™, Magic Magnify™, Magic Magnify Plus™, Magic Thumb™, Magic Touch™).
Download the free demo's attached:
Download the free demo's attached:
Attachments
Magic Thumb™ for OpenCart
Magic Zoom Plus™ for OpenCart
Magic Zoom™ for OpenCart
The zoom ratio is determined by the ratio of your small and large images. For example, if your small image is 200px and your large image is 800px, then the ratio is 1:4. If your small image is 200px and your large image is 400px, then the ratio is 1:2.ithings wrote:Hi, Just purchased the Zoom Plus, it looks great. A couple of minor issues: 1) The Zooming ratio is different between the first image and the rest images, like 1:4 for the first, 1:1.2 for the rest
To make the zoom larger, you should upload larger images.
Could you share the URL of your page so we can identify the cause of the gap please?ithings wrote:2) gap below the images to the text below, probably because of the left column, but I guess it should be designed to allow other column across the image column. Anyone has idea to solve those issues? Appreciated.
Thanks for the reply. That's correct, the zooming ratio issue has been safely solved, nice zooming, pls review at: www.ithingsonlineshop.com. A minor bug comes up as there is always an additional picture repeating at the end of the thumbnails to the 2nd position, not sure whether it is something specific for our opencart deployment or a common bug need to be solve. Hope the issue can be solve by your technician soon. Cheer!
We looked at a few products but did not see any repeated thumbnails. e.g. here:
http://www.ithingsonlineshop.com/index. ... ct_id=1024
http://www.ithingsonlineshop.com/index. ... ct_id=1024
thanks for looking into it, the issue is solve by your responsible technical support without delay, just a small modification on the module.php file, then page you have looked at is the corrected one. Thanks for the quick solution on this error.
I tried this for a couple of days and purchased Magic Scroll for a trial, and found the zooming function is reliable, a few minor issue to be solved by your tech team to make it perfect, 1) the Magic Scroll can not be applied to other pages, e.g. latest, specials, as long as it is enabled inside the Magic Zoom, 2) As aforementioned by others, viewable gap will be there if the right/left column is down beyond the product description, which makes the spare side column useless. All others are fine, really appreciated for your kind support on correcting the error, and sincere look forward to have those minor points technically solved. Cheers!
The gap is like this attached, all the left column content below the description is removed for now to prevent the gap coming up. You may try any product page by simpy add some staff to the cart to make the gap appear.
I tried this for a couple of days and purchased Magic Scroll for a trial, and found the zooming function is reliable, a few minor issue to be solved by your tech team to make it perfect, 1) the Magic Scroll can not be applied to other pages, e.g. latest, specials, as long as it is enabled inside the Magic Zoom, 2) As aforementioned by others, viewable gap will be there if the right/left column is down beyond the product description, which makes the spare side column useless. All others are fine, really appreciated for your kind support on correcting the error, and sincere look forward to have those minor points technically solved. Cheers!
The gap is like this attached, all the left column content below the description is removed for now to prevent the gap coming up. You may try any product page by simpy add some staff to the cart to make the gap appear.
1. When Magic Scroll is installed as an addition to Magic Zoom Plus, Magic Scroll cannot be used on other pages. We will release a new version of the module later on which permits you to use Magic Scroll on other pages.ithings wrote:...a few minor issue to be solved by your tech team to make it perfect...
2. We cannot replicate this gap. Which browser are you using and what is the URL of the page where you see the gap? Please send that information to us here.
To swap the images on mouseover instead of click, go to your OpenCart admin [Admin panel -> Extensions] and change:ferry wrote:how to change image with hover mouse?????
"Method to switch between multiple images"
from Click to Mouseover, like this:
I read "readme_manual.txt" file in mod_opencart_magicthumb.zip and got it:Magic Toolbox wrote:New versions of our image zoom modules were released last week to support OpenCart v1.5.1.3 (Magic Zoom™, Magic Zoom Plus™, Magic Magnify™, Magic Magnify Plus™, Magic Thumb™, Magic Touch™).
Download the free demo's attached:
So does Magic Thumb support OC 1.5.1.3 ?18. Backup your /catalog/controller/common/home.php file and open it in editor.
19. Find the line looking like '$this->response->setOutput($this->render(TRUE), $this->config->get('config_compression'));'. It must be near line 51.
20. Replace it by the next piece of code:
$this->render();
if(version_compare(VERSION, '1.4.9', '<')) {
$this->output = magicthumb($this->output,$this,'latest_home_category',$this->model_catalog_product->getLatestProducts(8));
}
$this->response->setOutput($this->output, $this->config->get('config_compression'));
Yes, Magic Thumb (and all our other OpenCart modules) support the latest version of OpenCart, which is currently v1.5.1.3.
Please use the readme.txt installation instructions. Only use the readme_manual.txt instructions if you cannot install the module via the readme.txt method.
Thanks!
Please use the readme.txt installation instructions. Only use the readme_manual.txt instructions if you cannot install the module via the readme.txt method.
Thanks!
Thanks for quick reply! But i check the install file and see that it does exactly what the "readme_manual" said
I think Opencart has changed the way to display "home layout" since 1.4.9.6, and by the way i got "auto install failed" :d//modify catalog/controller/common/home.php
$c = file_get_contents($this->dir . '/catalog/controller/common/home.php');
$pattern = '\$this->response->setOutput\(\$this->render\(TRUE\), \$this->config->get\(\'config_compression\'\)\);';
$replace = '$this->render();' . "\n\t\t" .
//'if (function_exists(\'set_headers\') && $this->config->get(\'magicthumb_status\') != 0) {' . "\n\t\t\t" .
// '$this->output = set_headers($this->output);' . "\n\t\t" .
//'}' . "\n\t\t" .
'if(version_compare(VERSION, \'1.4.9\', \'<\')) {' . "\n\t\t\t" .
'$this->output = magicthumb($this->output,$this,\'latest_home_category\',$this->model_catalog_product->getLatestProducts(8));' . "\n\t\t" .
'}' . "\n\t\t" .
'$this->response->setOutput($this->output, $this->config->get(\'config_compression\'));';
$c = preg_replace('/'.$pattern.'/is', $replace, $c, 1); //only first needle replace
Last edited by MeKa on Thu Jan 12, 2012 6:12 pm, edited 1 time in total.
Could you send a support request to our tech support team please?
http://www.magictoolbox.com/contact/
We'll figure out the cause.
Thanks!
http://www.magictoolbox.com/contact/
We'll figure out the cause.
Thanks!
yes, it works on 1.5.1.3. Sorry, i found out my trouble myself
- use "<?php ?>" tag instead of "<? ?>" tag in "admin\controller\module\magictoolbox\boxes.inc"
- we should use auto install, because the "readme_manual" has some mistakes
- use "<?php ?>" tag instead of "<? ?>" tag in "admin\controller\module\magictoolbox\boxes.inc"
- we should use auto install, because the "readme_manual" has some mistakes

Thanks for your support29. Replace it by the next one:
global $aFolder; include($aFolder.\'/controller/module/magictoolbox/boxes.inc\');
Remove the backslash character
Thanks for reporting that MeKa - we are updating that step in the manual installation instructions!
Yes it works.next-gen wrote:any feedback?
is working for you guys?
I tried it, but I get horizontal and vertical scroll bars around the zoomed-in image.
How can this be fixed?
Thanks in advance,
Charles.
What is the URL of your page where you see the scrollbars?charlesdairo wrote:I get horizontal and vertical scroll bars around the zoomed-in image.
It's http://www.ckdigital.net/tae.Magic Toolbox wrote:What is the URL of your page where you see the scrollbars?charlesdairo wrote:I get horizontal and vertical scroll bars around the zoomed-in image.
It shows scrollbars in Firefox,
It moves the product details to the bottom in Chrome
Who is online
Users browsing this forum: No registered users and 7 guests