Hi there,
I have a question about the Supersizer plugin and Cataloger. Can I use Supersizer for Catalog Images? So that Cataloger won't resize my images but let Supersizer do the job.
And what tag for the Supersizer Path do I have to use in the Cataloger templates?
Hope someone can help.
Regards,
Jack
Supersizer and Cataloger
Re: Supersizer and Cataloger
you'd be using
{$src_image_1_url}
{$src_image_2_url}
for the paths...
how you'd use supersizer is up to you... you could fully replace
or just use supersizer with ULR set to true to fill the scr there.... best thing to do is to read the help and pick the part you think would fit the best for you.
Hope that helps... Cheers Jeremy
{$src_image_1_url}
{$src_image_2_url}
for the paths...
how you'd use supersizer is up to you... you could fully replace
or just use supersizer with ULR set to true to fill the scr there.... best thing to do is to read the help and pick the part you think would fit the best for you.
Hope that helps... Cheers Jeremy
-
- Forum Members
- Posts: 36
- Joined: Sat Jun 27, 2009 10:52 am
Re: Supersizer and Cataloger
Hi there
But how to use lightbox with cataloger?
in cataloger we have small pic and mediom pic but there is original size of pic stores in Uploads/images/catalog_src/*.jpg
wen we click in small pic it shows in mediom box and when we click on mediom pic must show the big picture like lightBox or some else!
thnx!
But how to use lightbox with cataloger?
in cataloger we have small pic and mediom pic but there is original size of pic stores in Uploads/images/catalog_src/*.jpg
wen we click in small pic it shows in mediom box and when we click on mediom pic must show the big picture like lightBox or some else!
thnx!
-
- Forum Members
- Posts: 23
- Joined: Mon Sep 28, 2009 9:04 pm
Re: Supersizer and Cataloger
Jeremy,
I tried a couple of things but I just can't seem to get it working correctly.
In my Cataloger templates I have the following line:
But how do I change this with Supersizer? For example I tried:
But no. This didn't work. Any idea?
Jeremy,JeremyBASS wrote: you'd be using
{$src_image_1_url}
{$src_image_2_url}
for the paths...
how you'd use supersizer is up to you... you could fully replace
or just use supersizer with ULR set to true to fill the scr there.... best thing to do is to read the help and pick the part you think would fit the best for you.
Hope that helps... Cheers Jeremy
I tried a couple of things but I just can't seem to get it working correctly.
In my Cataloger templates I have the following line:
Code: Select all
<img src="{$image_1_url}">
Code: Select all
{supersizer path='$image_1_url'}
Last edited by jackgittes on Mon Feb 15, 2010 1:12 pm, edited 1 time in total.
Re: Supersizer and Cataloger
well a few things...
{supersizer path='$image_1_url'}
would work '$foo' won't process but "$foo" would...
your using $image_1_url where you want... $src_image_1_url
so you could have
It'd be best if you read the help there.. lots of thing you can do and many way to handle this... Hope this helps, Cheers -Jeremy
{supersizer path='$image_1_url'}
would work '$foo' won't process but "$foo" would...
your using $image_1_url where you want... $src_image_1_url
so you could have
It'd be best if you read the help there.. lots of thing you can do and many way to handle this... Hope this helps, Cheers -Jeremy
-
- Forum Members
- Posts: 23
- Joined: Mon Sep 28, 2009 9:04 pm
Re: Supersizer and Cataloger
JeremyBASS wrote: well a few things...
{supersizer path='$image_1_url'}
would work '$foo' won't process but "$foo" would...
your using $image_1_url where you want... $src_image_1_url
so you could have
It'd be best if you read the help there.. lots of thing you can do and many way to handle this... Hope this helps, Cheers -Jeremy
Jeremy,
First of all real thanks for your great support!!! I am going to try your tips.