|
|
|
|
From: Guest Date: March 14 2010, 10:09
|
Hi Andrew !
tested your gallery for some days now. worked very well so far.
before i buy the source code, please let me know if theres a way to edit the code. i´m using the ACD-template.
is it possible to open just the image when clicking on a link (thumbnail) without all the html around ?
something like "...?id=1" opens "...imagesimage1.jpg" in a new window ?
thanks a lot for your great work
Mike
|
|
|
|
From: Encaps Date: March 14 2010, 15:50
|
Hello Mike,
thank you for your feedback.
Yes you can edit the code - open catalog_items.html and replace the code
<a href="?id=<?=$item["id"]?>
to
<a href="rwx/<?=$item["file"]?>" target="_blank"
something like this |
|
|
|
From: Guest Date: March 14 2010, 06:37
|
Sometimes a main category shown in the catalog_categs.html file may contain sub-categories. If a sub-category is pressed then it opens up those items which is perfect. What I want to do if the main category is pressed that the contains sub-categories, then I'd like the sub-categories to be shown instead of all the sub-category items.
Hope this make more sense |
|
|
|
From: Encaps Date: March 14 2010, 08:22
|
| I can implement the feature you described within 1 hour |
|
|
|
From: Guest Date: March 13 2010, 18:08
|
Hi there,
I just implement your captcha stuff (was easy to do and easier than the official one), but whatever I type in for the 3 symbols, I do not get any OK or error message, as if it was not working.
Any clue?
Thank you. |
|
|
|
From: Encaps Date: March 14 2010, 04:03
|
Please send me your code,so I will check
|
|
|
|
From: Guest Date: March 13 2010, 08:52
|
| Hi, I just purchased the software and think it's great. I want to use the ACD template, but I can't figure out how to make it display a single preview image of all of the subfolders. For example, I have a Main Gallery and then Gallery1, Gallery2, and Gallery3 beneath that. When the default page loads and takes me to the Main gallery, I only want to see a single thumbnail for each of the sub-galleries. Then, when I open a sub-gallery, all of the images for that gallery will be displayed. How can I get it to do that? |
|
|
|
From: Encaps Date: March 14 2010, 08:19
|
so you could modify
catalog_items.html to do not print out the items/pictures if
count($html["category"]["childs"])>0
for example:
if(count($html["category"]["childs"])==0)
foreach($html["items"] as $item)
{
.. regular logic...
}
and print out categories thumbnails from catalog_categs_select.html:
foreach($html["categ"]["childs"] as $subcateg)
{
?><a href="?categ_id=<?=$subcateg["id"]?>"><img src="<?=$subcateg["img"]?>"></a>
} |
|
|
|
From: Guest Date: March 12 2010, 22:50
|
hi there,
have some one don multiple image/photos for single item with encaps?
like having different wive for the same photo.
i hope, i did made my self understood.
|
|
|
|
From: Encaps Date: March 13 2010, 12:06
|
| Unfortunately there is only one image per item |
|
|
|
From: Guest Date: March 12 2010, 20:47
|
hello i have a question.
i've got encaps and maybe you can help me? how could i add a checkbox of delivery?
i mean, if the checkbox is checked than the subtotal will automaticly raised by 10 dollars and
if the checkbox isn't checked than nothing happend.
hope you can help me :) |
|
|
|
From: Encaps Date: March 13 2010, 11:16
|
| Hello,customization you described will take 1 hour, $14 |
|
|
|
From: Guest Date: March 11 2010, 11:51
|
hello am currently using this script and i have a question i have the template Shopcart but when i upload an image and i view the item with the coment i added ex: http://***.encaps.net/software/encapsgallery/templates/Shopcart/catalog.php?id=73 it has the comment below the image where as in mine it comes in the image thumbnail instead. could someone please tell me how to make this possilbe the image comment to be in the Shopcart as is in here: http://***.encaps.net/software/encapsgallery/templates/Shopcart/catalog.php?id=73
Regards
JO |
|
|
|
From: Encaps Date: March 11 2010, 12:56
|
Sorry, I did not understand your question.
Please contact me with MSN or Skype |
|
|
|
From: Guest Date: March 11 2010, 05:23
|
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@linnaweekly.asian-developer.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at linnaweekly.com Port 80 |
|
|
|
From: Encaps Date: March 11 2010, 08:54
|
| How may I help? |
|
|
|
From: Guest Date: March 10 2010, 15:20
|
Greetings,
Great script!!
I'd like to remove some of the item parameters and force the following on the new item page:
thumbnail: auto
align: left
width: 600 (maintain aspect if possible)
category: /
enabled: check
Thanks in advance. |
|
|
|
From: Encaps Date: March 11 2010, 12:40
|
You could edit admin/html/catalog_item.html, replace html tags you listed with hidden fields, for example:
you could replace
<tr>...Thumbnail...</tr>
with
<input type="hidden" name="thumb_static" value="no">
Something like this |
|
|
|
From: Guest Date: March 10 2010, 12:31
|
Hi
We purchased your product a few days back.
How do we make the image open in a new window when we click on the thumbnail.
Thanks
Vaughn |
|
|
|
From: Encaps Date: March 11 2010, 08:51
|
You need to edit catalog_items.html, add the code
target="_blank"
into the img tag |
|
|