X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   Dynamic Images - a FREE mod for image resizing! (https://forum.x-cart.com/showthread.php?t=41911)

intel352 08-22-2008 04:14 AM

Dynamic Images - a FREE mod for image resizing!
 
DO NOT USE MODS FROM THIS DEVELOPER. HE IS BANNED FROM THE FORUMS, OFFERS NO SUPPORT FOR HIS PRODUCTS AND HAS BEEN CAUGHT HACKING SITES.

The Dynamic Images module from PHP Site Solutions, is an open-source (and free) addition to the X-Cart ecommerce system. This module gives your X-Cart store the ability to dynamically resize images (and generate thumbnails) on the fly! You no longer have to worry about large product images driving customers away due to slow page loads. With our dynamic image generator, your product thumbnails will properly be resized & the new image is cached, to improve performance both on your server and for your customer.

This module comes already equipped to resize product thumbnails, and the primary image on your product pages. The Dynamic Images module is so easy to use, if you decide to implement resizable images in some other area of your shopping cart, you simply have to insert a single line of code into your Smarty template, wherever you want a resized image to appear.

Since this is a free module, and is open-source, you can make any modifications to the source code as you desire, or hire any PHP developer that you wish to further enhance the code!

Features:
  • Image resizing on-the-fly
  • Smart cache support, avoids generating multiple copies of the same size of the same image
  • Image watermarking
  • External images (images hosted via external URLs, or even images accessible only via X-Cart's image.php script)
  • Ability to specify resized image quality
  • Support for sharpening images, or applying unsharp mask
  • Ability to crop images
  • Support for image overlays
  • Ability to frame images using a separate image
  • Open-source
  • FREE!


Here's a page using the module (note, the popup functionality is an implementation of Lytebox, which was implemented separately): XXXXXX

intel352 08-22-2008 08:13 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Just a note, to anyone that tried to get one of the free mods and experienced an error, please try again.

I had made a change to process orders with a total of $0 to automatically be processed, but didn't expect the resulting behavior from X-Cart. The error was reported to me by a customer, and has been corrected :-)

Sorry for the inconvenience.

intel352 08-22-2008 09:38 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
I've posted a tutorial for the Dynamic Images module, to make it function nicely with Lytebox, an image viewer similar to Thickbox

Read it here:
Dynamic Images + Lytebox

Asiaplay 08-23-2008 05:22 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Thanks Jon... !!!

Very nice FREE module... and great to see this is even more powerful than Telafirma's (now extinct) Dynamic Image Generator mod. Water-marking and picture frames etc. etc.- cool!!!!

This module is really a must add-on for all X-Cart users, so they can avoid the painful way that X-Cart handles image import (and you have unbelievably made it FREE and open source so everyone can benefit).

Great work Jon and I am sure their will be some happy x-cart users, using this module.

Cheers and thanks - Asiaplay

WhiteDoveGifts 08-23-2008 07:48 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
I agree, many Kudos for Jon here!!! I was lucky to buy the Telafirma mod just before Stephen "dissappeared" and I see many people loosing their money because of this, not to mention the lack of support for those who purchased the mod...

Making this mod open source will make every X-Cart better and will hopefully be a default "out of the box" feature one day. :-)

tarty00 08-23-2008 11:21 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Jon thank you so very much! Your a legend!! MASSIVE CHEERS MATE!!!

intel352 08-24-2008 12:02 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Just a note, while the patch file is specifically for 4.1.10, there's no reason it shouldn't work on 4.1.9, just might require manual patching ;-)

While I do believe the {thumb} plugin itself is definitely better, keep in mind that Telafirma's mod has quite a bit of additional functionality added in. Dynamic Images has the potential to be better, but is pretty much bare-bones to start with. Just clarifying so you aren't mislead :-)

Cheers!

tarty00 08-24-2008 12:45 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
LOL thanks heaps Mate. I just tried doing it on my 4.1.9 with no go so I am in the process of upgrading to 4.1.10. But I am having trouble with that too. LOL. Can't wait to get this going in my store because I am lost without the other one.

Cheers! :)

gennarof 08-25-2008 06:29 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by intel352
Just a note, while the patch file is specifically for 4.1.10, there's no reason it shouldn't work on 4.1.9, just might require manual patching ;-)

While I do believe the {thumb} plugin itself is definitely better, keep in mind that Telafirma's mod has quite a bit of additional functionality added in. Dynamic Images has the potential to be better, but is pretty much bare-bones to start with. Just clarifying so you aren't mislead :-)

Cheers!


Most people I spoke with rave about ths mod.. I am trying to install it for my site desertvalleyelectronics.com but running into a couple of problems you may be able to clear up for me.

1) How exactly should I manually patch Product_thumbnail.tpl. code is presently as follows.

{* existing code *}

{* $Id: product_thumbnail.tpl,v 1.19.2.1 2007/07/09 05:00:35 svowl Exp $ *}
{if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} style="margin:5px;" alt="{$product|escape}" />{/if}

{* end existing code *}

I tried the following but then no product images are rendered at all. Just the descriptions.

{ * after manual patch for product_thumbnail.tpl *}

{* $Id: product_thumbnail.tpl,v 1.19.2.1 2007/07/09 05:00:35 svowl Exp $ *}
{* skin1/product_thumbnail.tpl (revision 15) *}
{* skin1/product_thumbnail.tpl (working copy) *}
{* @@ -1,2 1,44 @@*}
{* $Id: product_thumbnail.tpl,v 1.19.2.1 2007/07/09 05:00:35 svowl Exp $*}

{strip}
{* PHP Site Solutions - Dynamic Images *}
{if $active_modules.PHPSS_Dynamic_Images ne ""}
{if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}
{if $main eq "catalog" || $main eq "search" || $main eq "manufacturer_products" || $main eq "download_home"}
{if !$alt}
{assign var=alt value=$product}
{/if}
{/if}
{if $tmbn_url}
{if $usertype eq 'A' || $usertype eq 'P'}
{assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":"../"|replace:"`$https_location`/":"../"}
{else}
{assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":""|replace:"`$https_location`/":""}
{/if}
{if !$class}
{assign var="class" value="thumb"}
{/if}
{if !$sharpen}
{assign var="sharpen" value="true"}
{/if}
{if !hint}
{assign var="hint" value="false"}
{/if}
{if !overlay_position}
{assign var="overlay_position" value="5"}
{/if}
{thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay="$overlay" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}
{else}
{* Capture the image tag and clean out extra whitespaces *}
{capture assign="img_cln"}
<img {if $id}id="{$id}"{/if} src="{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{if $file_upload_data.file_path}&tmp=y{/if}" {if $image_x ne 0}width="{$image_x}"{/if} {if $image_y ne 0}height="{$image_y}"{/if} alt="{$product|escape}" {if $align}align="{$align}"{/if} {if $class}class="{$class}"{/if} />
{/capture}
{$img_cln|strip}
{/if}
{/if}
{else}
{if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
{/if}
{* / PHP Site Solutions - Dynamic Images *}
{/strip}

{ * end of manual patch *}

2) My second question is with regard to the directory /images/cache/
The instructions state " A new directory will have been created, images/cache/, please CHMOD this directory to 777 (it must be writeable to cache your images)"

As this directory was not created that I could see, I just created the directory under images in the root, not skin1 directory and chmod 777 and left it writeable . I just need to know that that is ok.

As I said, after I activate and configure the module from the back end, no product images display at all, just description.

Any feed back will be appreciated.
Thanks to all for previous assist.

intel352 08-25-2008 07:13 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Hi gennarof, to make the code more readable (just a tip), it's best to place it within [code] tags in your posts.

You said that no images/cache/ folder was created, if that's correct, then that suggests you didn't upload the files from the /upload/ folder to your site root. The /upload/ folder has the following structure:
/upload/images/cache/
/upload/include/templater/plugins/function.thumb.php
/upload/include/templater/plugins/function.thumb_imp.php
/upload/sql/phpss_dynamic_images.sql

So once you've uploaded the contents of /upload/, you should see the images/cache/ folder exist (along with the plugin files, etc). Or if you did upload properly, it's possible that your Unzip program didn't preserve the images/cache/ folder because it's empty?


Additionally, you mention that when you modified the product_thumbnail file, no images were displayed. Please check your /var/log/ directory for any PHP error log files, please post the content of the most recent log file.

Cheers

Stizerg 08-27-2008 06:29 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Thanks Jon!
I was looking for solution like this, to replace my pics resizer.
Now, page loads much faster. (I use it for detailed images only).

gennarof 08-28-2008 05:24 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Thanks Jon..I manually deleted the files I ftp's into the root, deleted the /cache/ directory I created in under the images directory and reinstalled from / at the folder level after correcting the zip file that previously only showed the files not the directory structure. In short I ftp'd the 3 folders beneath the upload folder ( /images, /include , /sq) into the root directory of the site. I manually patched the skin1/product_thumbnail.tpl. and the images seem to showing up ok now. Thanks much..

I do have one other concern..In the backend .. when I go to modules to activate the mod.. It shows the Dynamic Images module twice. When I tick one of the boxes to activate the module and then "update" both itterations of the module show as ticked. I am sure this is because I messed up the first install. and ran the patch twice. Do you have any Idea how I can get rid of the duplicate listing of the module. (see screen print attached)

http://desertvalleyelectronics.com/Public/dynamicimage.jpg

mpgyvr 08-28-2008 07:17 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Works great for my product images. But I'd like to have my thumbnails also resized, but off the product images, so there needs to be only 1 imaged stored on the system. I've tried to modify products.tpl, but I can't make it work. Has anybody got a solution like this working?

thanks kindly!


Quote:

Originally Posted by Stizerg
Thanks Jon!
I was looking for solution like this, to replace my pics resizer.
Now, page loads much faster. (I use it for detailed images only).


intel352 08-28-2008 07:44 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
gennarof: this will remove the duplicate, execute in SQL Patch area of X-Cart.
Code:

DELETE FROM xcart_modules WHERE module_name LIKE "PHPSS_Dynamic_Images" LIMIT 1;

mpgyvr: I just upload 1 large image to my product's thumbnail, that same image is used for product listings or the actual product page itself. That way, there's only one original image, and it is resized as needed for each area that the image is displayed (whether product page or product listings). Also, if you haven't already, I suggest you implement the how-to for enhancing Dynamic Images further, as it gives you a nice pop-up effect to view your full-size image. (the link should be on the first page of this thread, or you can just visit my forums directly to find the thread)

Darryl 08-29-2008 04:43 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Hi,

A couple of questions.

Where do I find the watermarking feature (I did try).

Would it be possible to add "Click to enlarge" or something to that effect below the product image so people are aware they can access the detailed image.

Thanks

pcparts 08-29-2008 07:55 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
It is possible to add a water mark feature to this mod.

If i get time over the weekend i will have ago.

You could try and add in skin1/customer/main/product.tpl

Under
Code:

{if $active_modules.Magnifier ne "" && $config.Magnifier.magnifier_image_popup eq 'Y' && $zoomer_images ne '' && $js_enabled eq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


Add
Code:

<br /><br />
Click image to enlarge
<br /><br />


intel352 08-29-2008 08:30 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
1 Attachment(s)
Quote:

Originally Posted by Darryl
Hi,

A couple of questions.

Where do I find the watermarking feature (I did try).

Would it be possible to add "Click to enlarge" or something to that effect below the product image so people are aware they can access the detailed image.

Thanks


Hi Darryl, here you go

Code:

{thumb file="images/D/variant_chart_Example-1_live.jpg" width=500 hint=false overlay="images/famguystewie.png" overlay_position=5 legend="Click to Enlarge"}

The image generated from this code is attached.
The "Click to Enlarge" bit is better done as suggested by PCParts, as you can style it his way. This example is just to show what is possible regarding what you requested.

Just a note, overlay_position=5 sets the overlay image to the center. Your options are 1-9 (starting from top left).

Additionally, to give people a "hint" that they can click to expand the image, you can set hint=true (or remove the reference completely, as I believe default is true), which will add a magnifier glass to the lower right of your image.

You can view the comments at the top of the file in include/templater/function.thumb_imp.php, to find out more about what's possible.

EDIT: Using my method (the default thumb_imp method), you can only submit a .png file as an overlay image

pcparts 08-29-2008 10:22 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Try this for watermark images on all products it worked ok on my local computer.

In function.thumb_imp

Change line 527 to this

Code:

$overlay = imagecreatefromgif($params['overlay']);

Under
Code:

/* load the "overlay"-image */

Create a folder watermark in your root images directory.

In skin1/product_thumbnail.tpl

Change this
Code:

{thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay="$overlay" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}

To this

Code:

{thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay_position="5" overlay="images/watermark/site.gif" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}

Create a watermark image and put it in images/watermark

To change the image name just change this (site.gif) in the product_thumbnail.tpl

There might be better ways of doing this some others might like to add to it.

polkadotninja 09-02-2008 07:24 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Just wanted to chime in and note that this is a great mod. I purchased the Telefirma mod, but it took a long while to get and is tied to a single domain. Not sure if it'll work on test localhost domains, but haven't gotten answer to this or any other basic Q's from the provider, so I'm too nervous about requiring any possible support down the road to use it. Found this mod while waiting for delivery of the Telefirma mod, though, and I love it.

I installed the Lytebox changes as suggested, and like that a lot, too. I made a few minor changes that I'd like to share in case anybody is interested. I wanted to have the image on the product editing page be resized, too, so ended changing the following files ...

skin1/main/edit_image.tpl, changed image line to the following:
PHP Code:

{if $active_modules.PHPSS_Dynamic_Images ne ""}
  <
a href="{$product.tmbn_url}title="{$product.product|escape}rel="lytebox[detailed]"><img src="/{thumb file=$product.tmbn_url width=$phpss_dyn_img_width|default:$product.image_x link=false hint=false get_image_path=true}" id="product_thumbnail" class="thumb" alt="{include file="main/image_property.tpl"}" /></a>
{else}
  <
img id="{$idtag}src="{$xcart_web_dir}/image.php?type={$type}&amp;id={$id}&amp;ts={$smarty.now}{if $already_loaded}&amp;tmp=Y{/if}"{if $image_x ne 0width="{$image_x}"{/if}{if $image_y ne 0height="{$image_y}"{/if} alt="{include file="main/image_property.tpl"}"/>
{/if} 


skin1/admin/home.tpl and skin1/provider/home.tpl, added the following to the head tag:
HTML Code:


    {* Lytebox *}
    <script type="text/javascript" language="javascript" src="{$SkinDir}/js/lytebox.js"></script>
    <link rel="stylesheet" href="{$SkinDir}/css/lytebox.css" type="text/css" media="screen" />
    {* /Lytebox *}


Now going to try to eliminate the product listing thumbnails and just replace them with a resized version of the main image ... if anybody has advice on this, please share :-)

polkadotninja 09-02-2008 08:55 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
One more note ... in case anyone is interested in doing what I mentioned at the end of the last post (replacing product thumbnails with a resized version of the main product image), here's what I came up with, which, so far, seems to work ...

In include/func/func.files.php:

Modify the function call for func_get_image_url to look like the following (added one arg) -

PHP Code:

function func_get_image_url($id$type 'T'$image_path false$no_url false) { 


Then modify the line in that same function which looks like this -

PHP Code:

if (is_url($image_path)) { 


to this -

PHP Code:

if (is_url($image_path) || $no_url) { 


In include/search.php:

Modify the section that looks like this -

PHP Code:

# Get thumbnail URL
       
$products[$k]["tmbn_url"] = false;
                
        if (!
is_null($v['image_path_T'])) { 


to this -

PHP Code:

# Get thumbnail URL
       
$products[$k]["tmbn_url"] = false;
        
        if (
$active_modules.PHPSS_Dynamic_Images != "") {
          
$products[$k]["tmbn_url"] = func_get_image_url($v['productid'], "P"falsetrue);
        }
        
        else if (!
is_null($v['image_path_T'])) { 



Oh, one last thing, you might as well hide the thumbnail rows in skin1/main/product_details.tpl. I think that's it. Everything else just works once that's done ... the trick was to make the tmbn_url property point to the product's main image URL.

- Sam

Darryl 09-03-2008 07:36 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by pcparts
It is possible to add a water mark feature to this mod.

If i get time over the weekend i will have ago.

You could try and add in skin1/customer/main/product.tpl

Under
Code:

{if $active_modules.Magnifier ne "" && $config.Magnifier.magnifier_image_popup eq 'Y' && $zoomer_images ne '' && $js_enabled eq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


Add
Code:

<br /><br />
Click image to enlarge
<br /><br />



Hi,

That didn't work. I don't have the same code in the skin1/customer/main/product.tpl. There is code that is similar but not the exact same. The only extra code in there is from this mod and the extra changes for the detailed popup image.

I appreciate the effort.

Darryl 09-03-2008 07:42 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by intel352
Hi Darryl, here you go

Code:

{thumb file="images/D/variant_chart_Example-1_live.jpg" width=500 hint=false overlay="images/famguystewie.png" overlay_position=5 legend="Click to Enlarge"}

The image generated from this code is attached.
The "Click to Enlarge" bit is better done as suggested by PCParts, as you can style it his way. This example is just to show what is possible regarding what you requested.

Just a note, overlay_position=5 sets the overlay image to the center. Your options are 1-9 (starting from top left).

Additionally, to give people a "hint" that they can click to expand the image, you can set hint=true (or remove the reference completely, as I believe default is true), which will add a magnifier glass to the lower right of your image.

You can view the comments at the top of the file in include/templater/function.thumb_imp.php, to find out more about what's possible.

EDIT: Using my method (the default thumb_imp method), you can only submit a .png file as an overlay image


Hi,

Could you tell me where this code would go? I don't do any programming and unless the directions are find this and add before or after etc. I don't have a lot of chance at getting it implemented. The "Click To Enlarge" as stated by PCParts didn't work and I am not sure what to do with yours.

I would be appreciative if I could just get the "Click To Enlarge" functioning.

Thanks

Darryl 09-04-2008 12:17 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
I just upgraded successfully it appears to 4.1.11 and the only modification that is not working at the moment is this one. I have tried to reinstall with new 4.1.11 files and two of the patch upgrade files fail. The files were new 4.1.11 files that failed with no other mods present.

Darryl 09-05-2008 03:20 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Is this going the way of the other Dynamic Images mod?

pcparts 09-05-2008 04:15 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Hi Darryl

Try placing this in your product.tpl see if this works.

Code:

<div style="white-space:nowrap;color:#D90000;font-weight:bold;padding:2px;margin:10px 0 4px;">Click image to enlarge</div>

Darryl 09-05-2008 04:24 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by pcparts
Hi Darryl

Try placing this in your product.tpl see if this works.

Code:

<div style="white-space:nowrap;color:#D90000;font-weight:bold;padding:2px;margin:10px 0 4px;">Click image to enlarge</div>


Hey,

Thanks alot. The only problem is I upgraded to 4.1.11 and was pretty proud of myself that everything worked out for the most part. The only mod that didn't quite work properly and I suspected it wouldn't during the upgrade process was this one. I had noticed some code changes during the upgrade, and suspected it may not work when I finished.

I'll have to wait for an update before I can make it active again.

I used an X-Cart upgrade pack from 4.1.10 to 4.1.11 and tested it first. I basically followed the instructions in the post that was made in another forum about upgrading safely. I manually did the ones that wouldn't upgrade on their own.

Thanks

pcparts 09-05-2008 04:52 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
I have this working ok on 4.1.11 now.

There would be better ways of doing this but try this BACKUP FIRST!!!

In your product.tpl

Change

Code:

{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="W"}&nbsp;


To This

Code:

{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;

Then Change

Code:

{include file="product_thumbnail.tpl" productid=$product.productid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}&nbsp;

To This

Code:

{include file="product_thumbnail.tpl" productid=$product.productid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;

This is working on a Local install OK.

pcparts 09-05-2008 10:53 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
And i just tried this on a stock 4.1.11 product.tpl

change this part

Code:

{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{else}
{include file="product_thumbnail.tpl" productid=$product.image_id image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;
{/if}
{if $active_modules.Magnifier ne "" and $config.Magnifier.magnifier_image_popup eq 'Y' and $zoomer_images ne '' and $js_enabled eq 'Y' and $printable neq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


With this

Code:

{* PHP Site Solutions - Dynamic Images *}
{if $active_modules.PHPSS_Dynamic_Images ne ""}
{assign var=phpss_dyn_img_width value=$config.PHPSS_Dynamic_Images.phpss_dyn_img_prodtpl_img_width}
{/if}
{* / PHP Site Solutions - Dynamic Images *}
{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{else}
{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;
{/if}
{if $active_modules.Magnifier ne "" and $config.Magnifier.magnifier_image_popup eq 'Y' and $zoomer_images ne '' and $js_enabled eq 'Y' and $printable neq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


Hope this helps.

xenonshop 09-13-2008 12:54 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
I have 4.1.1 x-cart and when I wanna patch I get could not patch error. When shall I expect a patch for 4.1.1 version?

davidsaldana 09-15-2008 02:38 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by xenonshop
I have 4.1.1 x-cart and when I wanna patch I get could not patch error. When shall I expect a patch for 4.1.1 version?



I am having the same problem. Cant get the .php patch to work with 4.1.11......

jheard 09-16-2008 06:07 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Can anyone tell me how to use this add-on? Everything appears setup correctly but I can not find where to add the images. If I use the image adding feature within the products, it works like the old one only the images WILL NOT show up. Where are you supposed to add images to a product and is there anymore documentation for this add-on other than the limited setup readme file?

Thanks for any help and I really need to decide if this module works or if I need to work with X-Cart subpar image handling features.

Thanks so much,
-J

amsruned 09-17-2008 09:37 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
i am having a problem with this mod. i installed it and it said could not patch product_tumbail.tpl

Here is what is in the patch txt box. i am lost on what to do next.

Index: image.php
================================================== =================
--- image.php (revision 15)
+++ image.php (working copy)
@@ -88,10 +88,13 @@
# counting attempts to prevent infinite loop
$_table = $sql_tbl['images_'.$type];
$_field = (($config['available_images'][$type] == "U") ? "id" : "imageid");
-
- $result = db_query("SELECT image, image_path, image_type, md5, image_size, filename FROM $_table WHERE $_field='$id' LIMIT 1");
+ /* PHP Site Solutions - Dynamic Images */
+ $result = db_query("SELECT image, image_path, image_type, md5, image_size, filename, date FROM $_table WHERE $_field='$id' LIMIT 1");
+ /* / PHP Site Solutions - Dynamic Images */
if ($result && db_num_rows($result) > 0) {
- list($image,$image_path,$image_type,$md5,$image_si ze,$_filename) = db_fetch_row($result);
+ /* PHP Site Solutions - Dynamic Images */
+ list($image,$image_path,$image_type,$md5,$image_si ze,$_filename, $date) = db_fetch_row($result);
+ /* / PHP Site Solutions - Dynamic Images */

if (zerolen($image) && zerolen($image_path) && !zerolen($_filename)) {
x_load("image");
@@ -167,6 +168,11 @@
}

header("Content-Type: ".$image_type);
+/* PHP Site Solutions - Dynamic Images */
+if ($date > 0) {
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $date) . ' GMT');
+}
+/* / PHP Site Solutions - Dynamic Images */
if ($image_size > 0) {
header("Content-Length: ".$image_size);
if (defined("BENCH") && constant("BENCH")) {
Index: skin1/customer/main/product.tpl
================================================== =================
--- skin1/customer/main/product.tpl (revision 15)
+++ skin1/customer/main/product.tpl (working copy)
@@ -13,12 +13,21 @@
<tr>
<td class="PImgBox" rowspan="2">

+{* PHP Site Solutions - Dynamic Images *}
+{if $active_modules.PHPSS_Dynamic_Images ne ""}
+ {assign var=phpss_dyn_img_width value=$config.PHPSS_Dynamic_Images.phpss_dyn_img_p rodtpl_img_width}
+{/if}
+{* / PHP Site Solutions - Dynamic Images *}
{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{elseif $product.force_image_type eq 'W' && $product.variantid}
-{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="W"}&nbsp;
+{* PHP Site Solutions - Dynamic Images *}
+{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.imag e_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="W"}&nbsp;
+{* / PHP Site Solutions - Dynamic Images *}
{else}
-{include file="product_thumbnail.tpl" productid=$product.productid image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}&nbsp;
+{* PHP Site Solutions - Dynamic Images *}
+{include file="product_thumbnail.tpl" productid=$product.productid image_x=$phpss_dyn_img_width|default:$product.imag e_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}&nbsp;
+{* / PHP Site Solutions - Dynamic Images *}
{/if}
{if $active_modules.Magnifier ne "" && $config.Magnifier.magnifier_image_popup eq 'Y' && $zoomer_images ne '' && $js_enabled eq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
Index: skin1/product_thumbnail.tpl
================================================== =================
--- skin1/product_thumbnail.tpl (revision 15)
+++ skin1/product_thumbnail.tpl (working copy)
@@ -1,2 +1,44 @@
{* $Id: product_thumbnail.tpl,v 1.19.2.1 2007/07/09 05:00:35 svowl Exp $ *}
-{if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
+{strip}
+{* PHP Site Solutions - Dynamic Images *}
+{if $active_modules.PHPSS_Dynamic_Images ne ""}
+ {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}
+ {if $main eq "catalog" || $main eq "search" || $main eq "manufacturer_products" || $main eq "download_home"}
+ {if !$alt}
+ {assign var=alt value=$product}
+ {/if}
+ {/if}
+
+ {if $tmbn_url}
+ {if $usertype eq 'A' || $usertype eq 'P'}
+ {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":"../"|replace:"`$https_location`/":"../"}
+ {else}
+ {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":""|replace:"`$https_location`/":""}
+ {/if}
+ {if !$class}
+ {assign var="class" value="thumb"}
+ {/if}
+ {if !$sharpen}
+ {assign var="sharpen" value="true"}
+ {/if}
+ {if !hint}
+ {assign var="hint" value="false"}
+ {/if}
+ {if !overlay_position}
+ {assign var="overlay_position" value="5"}
+ {/if}
+
+ {thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay="$overlay" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}
+ {else}
+ {* Capture the image tag and clean out extra whitespaces *}
+ {capture assign="img_cln"}
+ <img {if $id}id="{$id}"{/if} src="{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{if $file_upload_data.file_path}&tmp=y{/if}" {if $image_x ne 0}width="{$image_x}"{/if} {if $image_y ne 0}height="{$image_y}"{/if} alt="{$product|escape}" {if $align}align="{$align}"{/if} {if $class}class="{$class}"{/if} />
+ {/capture}
+ {$img_cln|strip}
+ {/if}
+ {/if}
+{else}
+ {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
+{/if}
+{* / PHP Site Solutions - Dynamic Images *}
+{/strip}

davidsaldana 09-17-2008 09:47 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Quote:

Originally Posted by amsruned
i am having a problem with this mod. i installed it and it said could not patch product_tumbail.tpl

Here is what is in the patch txt box. i am lost on what to do next.

Index: image.php
================================================== =================
--- image.php (revision 15)
+++ image.php (working copy)
@@ -88,10 +88,13 @@
# counting attempts to prevent infinite loop
$_table = $sql_tbl['images_'.$type];
$_field = (($config['available_images'][$type] == "U") ? "id" : "imageid");
-
- $result = db_query("SELECT image, image_path, image_type, md5, image_size, filename FROM $_table WHERE $_field='$id' LIMIT 1");
+ /* PHP Site Solutions - Dynamic Images */
+ $result = db_query("SELECT image, image_path, image_type, md5, image_size, filename, date FROM $_table WHERE $_field='$id' LIMIT 1");
+ /* / PHP Site Solutions - Dynamic Images */
if ($result && db_num_rows($result) > 0) {
- list($image,$image_path,$image_type,$md5,$image_si ze,$_filename) = db_fetch_row($result);
+ /* PHP Site Solutions - Dynamic Images */
+ list($image,$image_path,$image_type,$md5,$image_si ze,$_filename, $date) = db_fetch_row($result);
+ /* / PHP Site Solutions - Dynamic Images */

if (zerolen($image) && zerolen($image_path) && !zerolen($_filename)) {
x_load("image");
@@ -167,6 +168,11 @@
}

header("Content-Type: ".$image_type);
+/* PHP Site Solutions - Dynamic Images */
+if ($date > 0) {
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $date) . ' GMT');
+}
+/* / PHP Site Solutions - Dynamic Images */
if ($image_size > 0) {
header("Content-Length: ".$image_size);
if (defined("BENCH") && constant("BENCH")) {
Index: skin1/customer/main/product.tpl
================================================== =================
--- skin1/customer/main/product.tpl (revision 15)
+++ skin1/customer/main/product.tpl (working copy)
@@ -13,12 +13,21 @@
<tr>
<td class="PImgBox" rowspan="2">

+{* PHP Site Solutions - Dynamic Images *}
+{if $active_modules.PHPSS_Dynamic_Images ne ""}
+ {assign var=phpss_dyn_img_width value=$config.PHPSS_Dynamic_Images.phpss_dyn_img_p rodtpl_img_width}
+{/if}
+{* / PHP Site Solutions - Dynamic Images *}
{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{elseif $product.force_image_type eq 'W' && $product.variantid}
-{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="W"}&nbsp;
+{* PHP Site Solutions - Dynamic Images *}
+{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.imag e_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="W"}&nbsp;
+{* / PHP Site Solutions - Dynamic Images *}
{else}
-{include file="product_thumbnail.tpl" productid=$product.productid image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}&nbsp;
+{* PHP Site Solutions - Dynamic Images *}
+{include file="product_thumbnail.tpl" productid=$product.productid image_x=$phpss_dyn_img_width|default:$product.imag e_x product=$product.product tmbn_url=$product.tmbn_url id="product_thumbnail" type="P"}&nbsp;
+{* / PHP Site Solutions - Dynamic Images *}
{/if}
{if $active_modules.Magnifier ne "" && $config.Magnifier.magnifier_image_popup eq 'Y' && $zoomer_images ne '' && $js_enabled eq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
Index: skin1/product_thumbnail.tpl
================================================== =================
--- skin1/product_thumbnail.tpl (revision 15)
+++ skin1/product_thumbnail.tpl (working copy)
@@ -1,2 +1,44 @@
{* $Id: product_thumbnail.tpl,v 1.19.2.1 2007/07/09 05:00:35 svowl Exp $ *}
-{if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
+{strip}
+{* PHP Site Solutions - Dynamic Images *}
+{if $active_modules.PHPSS_Dynamic_Images ne ""}
+ {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}
+ {if $main eq "catalog" || $main eq "search" || $main eq "manufacturer_products" || $main eq "download_home"}
+ {if !$alt}
+ {assign var=alt value=$product}
+ {/if}
+ {/if}
+
+ {if $tmbn_url}
+ {if $usertype eq 'A' || $usertype eq 'P'}
+ {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":"../"|replace:"`$https_location`/":"../"}
+ {else}
+ {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":""|replace:"`$https_location`/":""}
+ {/if}
+ {if !$class}
+ {assign var="class" value="thumb"}
+ {/if}
+ {if !$sharpen}
+ {assign var="sharpen" value="true"}
+ {/if}
+ {if !hint}
+ {assign var="hint" value="false"}
+ {/if}
+ {if !overlay_position}
+ {assign var="overlay_position" value="5"}
+ {/if}
+
+ {thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay="$overlay" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}
+ {else}
+ {* Capture the image tag and clean out extra whitespaces *}
+ {capture assign="img_cln"}
+ <img {if $id}id="{$id}"{/if} src="{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{if $file_upload_data.file_path}&tmp=y{/if}" {if $image_x ne 0}width="{$image_x}"{/if} {if $image_y ne 0}height="{$image_y}"{/if} alt="{$product|escape}" {if $align}align="{$align}"{/if} {if $class}class="{$class}"{/if} />
+ {/capture}
+ {$img_cln|strip}
+ {/if}
+ {/if}
+{else}
+ {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$produc tid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
+{/if}
+{* / PHP Site Solutions - Dynamic Images *}
+{/strip}



Yeah, 4.1.11 branch is not working with this mod. I had the same problems, got the program to slightly work, but not the way it was intended.

Anyone have a fix for this branch yet?

xtestedx 10-04-2008 05:24 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
the pluses (+) in front of the code mean add to the template the minuses (-) mean delete. Im still working on this one 2.

davidsaldana 10-04-2008 05:28 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
figured that out. I can get the mod to work, but not the lytebox portion of it, which is really the bread of butter. Please post your changes so I can confirm that I have done it correctly.

Thanks,
David

xtestedx 10-04-2008 05:44 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
ok i got it working in 4.11.1 or watever (its the latest)
for The thumbnail
product_thumbnail.tpl

just replace the whole lot

Code:

{* $Id: product_thumbnail.tpl,v 1.19 2005/11/17 06:55:36 max Exp $ *}
 {strip}
 {* PHP Site Solutions - Dynamic Images *}
 {if $active_modules.PHPSS_Dynamic_Images ne ""}
        {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}
                {if $main eq "catalog" || $main eq "search" || $main eq "manufacturer_products" || $main eq "download_home"}
                        {if !$alt}
                                {assign var=alt value=$product}
                        {/if}
                {/if}
 
                {if $tmbn_url}
                        {if $usertype eq 'A' || $usertype eq 'P'}
                                {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":"../"|replace:"`$https_location`/":"../"}
                        {else}
                                {assign var="tfile" value=$tmbn_url|replace:"`$http_location`/":""|replace:"`$https_location`/":""}
                        {/if}
                        {if !$class}
                                {assign var="class" value="thumb"}
                        {/if}
                        {if !$sharpen}
                                {assign var="sharpen" value="true"}
                        {/if}
                        {if !hint}
                                {assign var="hint" value="false"}
                        {/if}
                        {if !overlay_position}
                                {assign var="overlay_position" value="5"}
                        {/if}
 
                        {thumb file="$tfile" width="$image_x" link="false" hint="false" overlay_position="$overlay_position" overlay="$overlay" sharpen="$sharpen" get_image_path="$get_image_path" html="class=\"$class\" alt=\"`$alt`\""}
                {else}
                        {* Capture the image tag and clean out extra whitespaces *}
                        {capture assign="img_cln"}
                                <img {if $id}id="{$id}"{/if} src="{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$productid}{if $file_upload_data.file_path}&tmp=y{/if}" {if $image_x ne 0}width="{$image_x}"{/if} {if $image_y ne 0}height="{$image_y}"{/if} alt="{$product|escape}" {if $align}align="{$align}"{/if} {if $class}class="{$class}"{/if} />
                        {/capture}
                        {$img_cln|strip}
                {/if}
        {/if}
 {else}
        {if $config.Appearance.show_thumbnails eq "Y" or ($type ne "T" and $type ne "")}<img{if $id ne ''} id="{$id}"{/if} src="{if $tmbn_url}{$tmbn_url}{else}{if $full_url}{$http_location}{else}{$xcart_web_dir}{/if}/image.php?type={$type|default:"T"}&amp;id={$productid}{/if}"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} alt="{$product|escape}" />{/if}
 {/if}
 {* / PHP Site Solutions - Dynamic Images *}
 {/strip}


for skin1/customer/main/product.tpl if you have cartlabs css template just think of ' Pimg box' as ==> <div class="product_thumb">

[code]
Copying what someone said earlier cause it works

Quote:

Originally Posted by pcparts
And i just tried this on a stock 4.1.11 product.tpl

change this part

Code:

{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{else}
{include file="product_thumbnail.tpl" productid=$product.image_id image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;
{/if}
{if $active_modules.Magnifier ne "" and $config.Magnifier.magnifier_image_popup eq 'Y' and $zoomer_images ne '' and $js_enabled eq 'Y' and $printable neq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


With this

Code:

{* PHP Site Solutions - Dynamic Images *}
{if $active_modules.PHPSS_Dynamic_Images ne ""}
{assign var=phpss_dyn_img_width value=$config.PHPSS_Dynamic_Images.phpss_dyn_img_prodtpl_img_width}
{/if}
{* / PHP Site Solutions - Dynamic Images *}
{if $active_modules.Detailed_Product_Images ne "" && $config.Detailed_Product_Images.det_image_popup eq 'Y' && $images ne '' && $js_enabled eq 'Y'}
{include file="modules/Detailed_Product_Images/popup_image.tpl"}
{else}
{include file="product_thumbnail.tpl" productid=$product.variantid image_x=$phpss_dyn_img_width|default:$product.image_x product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}&nbsp;
{/if}
{if $active_modules.Magnifier ne "" and $config.Magnifier.magnifier_image_popup eq 'Y' and $zoomer_images ne '' and $js_enabled eq 'Y' and $printable neq 'Y'}
{include file="modules/Magnifier/popup_magnifier.tpl"}
{/if}


Hope this helps.


This is what it comes out as http://www.slixaustralia.com.au/xcart4.1/xcart1/product.php?productid=16133&cat=3&page=1#

davidsaldana 10-04-2008 05:46 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
Any luck with the Lytebox portion?

-DS

xtestedx 10-04-2008 05:55 PM

Re: Dynamic Images - a FREE mod for image resizing!
 
working on it now ok

KeithXtreme 12-27-2008 10:55 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Anything with the Lytebox part....same problem as everyone else....

If I uncheck detailed images in popup, and click the image in the detailed images box lytebox works.....
But the actual product image thumb, will not use Lytebox

pfarcus 01-16-2009 07:46 AM

Re: Dynamic Images - a FREE mod for image resizing!
 
Yeah, I'm 4.1.11 too and I couldn't get it to work so I'll be watching this thread for any new versions or patches. (i'm not as advanced as you guys who can get it to work in 4.1.11)


All times are GMT -8. The time now is 09:36 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.