|
|
|
|
From: Guest Date: July 10 2009, 14:43
|
I download the free version.
in free version, is it possible to remove the link to your site?
Or this is something related to your license?
Thanks |
|
|
|
From: Encaps Date: July 12 2009, 11:47
|
| You are not supposed to remove the link from free version |
|
|
|
From: Guest Date: July 09 2009, 02:10
|
Hi,
is it possible modify the script so it would be possible to assign items to multiple categories?
|
|
|
|
From: Encaps Date: July 09 2009, 10:08
|
| Do you know PHP? |
|
|
|
From: Guest Date: July 06 2009, 11:44
|
Hi, love the scripts, have one question tho, when viewing the categories the images appear diagonally, which file do I need to edit for the display?
http://www.cooltraxpics.freehostrocket.com/encaps/catalog.php?categ_id=4 |
|
|
|
From: Encaps Date: July 06 2009, 14:29
|
This is because of template based on divs - the images can't align the divs.
There are 2 solutions:
1) to put come lines of "comment" info for each image, so the text
will automatically align the divs
2) switch to other template based on tables. |
|
|
|
From: Guest Date: July 05 2009, 22:56
|
Hello Andrew,
I would like to know whether it is possible to increase the opacity of the watermark.
Thank you for your help! :-) |
|
|
|
From: Encaps Date: July 06 2009, 00:52
|
You can control the opacity from /core/watwrmark.pnp, line #139:
imagecopymerge($image,$watermark_image,$dst_x,$dst_y,$src_x,$src_y,$src_w,$src_h,25);
It is 25% now |
|
|
|
From: Guest Date: July 06 2009, 07:07
|
| Thank you so much!!! You are great at answering all those questions so fast. Outstanding service, really appreciated! :-) |
|
|
|
From: Guest Date: June 30 2009, 14:36
|
Is it possible to have the main gallery page show only the image for each category rather than all images alphabetically. In the control panel, I have made 12 categories, within each category I have a description and have an image to represent that category. That is what I would like on the main gallery page. Then, I would like that image to be able to be clicked to show the contents of that specific category.
Thanks. |
|
|
|
From: Encaps Date: July 01 2009, 06:58
|
Thank you for the info.
Try to include catalog_categs.php instead of catalog.php in the index.php:
<?php include 'catalog_categs.php' ?> |
|
|
|
From: Guest Date: June 28 2009, 09:25
|
| I just purchased and installed encaps-2.3.17 and now administrator back-end control panel works ok, but front-end looks without any skin. How can I fix the problem? Thanks |
|
|
|
From: Encaps Date: June 29 2009, 14:39
|
| Could you please send me the URL? |
|
|
|
From: Guest Date: June 23 2009, 08:11
|
hi andrew,
is it possible to sort the images not by the rankin-tool.
it would be great if they sort automaticly after their title.
A_04, A_07, C_05, E_06, ...
cheers |
|
|
|
From: Encaps Date: June 23 2009, 12:55
|
You may try this:
/core/base.ctl.php, line #68:
$condition .=" ORDER BY title,id ";
Or if you'd like to sort by newest items:
$condition .=" ORDER BY updated_at DESC,title,id ";
|
|
|
|
From: Guest Date: June 21 2009, 07:18
|
Hi,
I was wondering if it is possible to show multiple category's images first then once the category picture has been clicked on it will show the gallery for that category? I am using the Acd template.
|
|
|
|
From: Encaps Date: June 22 2009, 11:09
|
| Could you please clarify? |
|
|
|
From: Guest Date: June 16 2009, 03:10
|
| is it possible to put html code in the description i.e. link to say face book. |
|
|
|
From: Encaps Date: June 16 2009, 12:30
|
| Yes, it's possible to put html code into the description. There is free demo available for download, you may try it out. |
|
|
|
From: Guest Date: June 14 2009, 15:55
|
Hi, im thinking to add a gallery in a section of my site, and i like to know if i can add a searchbox in the home page which send the user to the gallery.
Thanks. |
|
|
|
From: Encaps Date: June 16 2009, 12:31
|
<form method="get" action="catalog.php">
<input name="search" value="" type="text">
<input name="Submit" value="Search" type="submit">
</form> |
|
|