0

で助けが必要ですhow can i zoom image of the product in zen cart ?

jqzoom プラグインを試してみましたが、効果が表示されず、オプションも見つかりませんでしたadmin->configuration->jqzoom

jqzoomzen cart version 1.5.0. は Zen Cart バージョン 1.5.0 と互換性がありますか?

または、zen cart バージョン 1.5.0 と互換性のある他のプラグインを提案してください。

前もって感謝します..

4

2 に答える 2

5

zencart 1.5.0 では管理者タイプと管理者ロール機能が追加されているため、ページを登録して管理パネル メニューに表示する必要があります。

管理エリアからページを登録する方法。?

1. go to :  Admin Access Management - > Admin Page Registration
2. fill form and click on insert.
于 2012-08-20T13:40:26.530 に答える
1

Are you trying to use the jq zen cart plugin?

I couldnt find one that worked with v1.5, luckily its really easy to set up anyway, heres how i did it: Download the normal version jqzoom, rename the css and js files so that they began with script_ and style and drop them into the appropriate folders in your template, you then go in and edit the file includes/templates/default_template/templates/tpl_modules_main_product_image.php, add a class to the image link (as per jqzoom instruction) and save it to your template includes/templates/YOUR_TEMPLATE/templates/tpl_modules_main_product_image.php. you then call it with

$(document).ready(function(){
$('.yourclass').jqzoom();
});

put this either in your own javascript file or at the bottom of the jqzoom javascript, you can set various options when calling the script -check out jqzoom docs

于 2012-08-22T15:07:59.877 に答える