Pages (6):    1 2 3 4 5 6   
Administrator
Administrator
acrylian   13-03-2010, 15:47
#41

Sorry, I did not want to imply you did not understand. You are fairly new here so I just wanted to tell how request need to be understood. We welcome of course all ideas or suggestions! So feel free to open a ticket about!

Member
Member
afarkas   13-03-2010, 18:35
#42

everything is fine and i just thank You again :)

Member
Member
afarkas   15-03-2010, 07:56
#43

gjr, i try to midify Your theme to show tags on places where they are not shown by default. The only place where tags are shown is in image.php - under the detailed view of image.

I try to add code to show the image tags in non-detailed view of image, in album.php ...

I added a code to show image tags just after the code which shows nondetailed image (i think it is the only place i can put it), the code looks like this now:

(" title=" ">

[b][/b]

                        )

But the tags are shown above the image, not under, and, if image is "portrait layout" the tags are hidden by image... You can check out the example here:

http://gallery.attila-farkas.sk/albums/ludia/priatelia/#2
I want to ask You as the creator of this code - is there something i ommited that im not able to show this tags just under the image?
Or, is there an other way to do it?

Thank You

Member
Member
sceilig   17-03-2010, 21:47
#44

Wonderful theme and thanks for taking the time to create it.

I was wondering if it is possible that when you click on a large image in the slideshow, it actually opens the full image page, rather than going to the next image i.e. emulate the 'image details' link?

The code in jquery.galleriffic.js that controls the link is this:

 

There doesnt appear to be a function in that js file to generate the full image link that I could use instead of advancing to the next image.

The function in album.php that links to the full image is getImageLinkURL().

Im not sure
Because the code that drives

Member
Member
sceilig   17-03-2010, 21:49
#45

Oops, here is the code that is blank in my post above
 

Member
Member
vincent3569   18-03-2010, 09:02
#46

@afarkas
you're registration's link doesn't work on your site : error 404

Member
Member
vincent3569   18-03-2010, 09:17
#47

hello

i've reported few bugs
1- with IE, the naviguation bar is vertically shifted
see screenshot : http://img694.imageshack.us/img694/4936/capturertb.jpg

2-on the album page, if comments on album are allowed, there is no display of the comment box :
see the screenshot of admin pages and album (alt) pages :

gir, can you fix the 2 problems ?

Member
Member
gjr   18-03-2010, 13:28
#48

@vincent3569 - You need to provide a link for further help on the comments issue. I will look into IE display issues.

@sceilig - Good idea, I will look into it for next release.

Member
Member
sceilig   18-03-2010, 20:32
#49

I noticed that Trent's original galleriffic implementation allows you to customize the url that is displayed when you click on a thumbnail in an album.
I would prefer to have it display in the browser as photo-album/#caption-for-the-image instead of just photo-album/#2

Here is how to do that:
In album.php, one would replace
`

Administrator
Administrator
acrylian   18-03-2010, 20:50
#50

Regarding title in the url: You should be using the image filename to avoid double work of stripping special chars and such. This is what Zenphoto uses on normal image urls.

If you really need the title better use the SEO filter function to clear it.

Member
Member
vincent3569   19-03-2010, 10:22
#51

@gir
ok follow this link :
http://vincent.bourganel.free.fr/zenphoto/index.php?album=raid-obivwak
there is a album "raid obivwak" with 2 sub-albums "raid obivwak 2008" and "raid obivwak 2009"
comments are allowed on "raid obivwak" and are not allowed on the 2 sub-albums.
in all the case, the comments box doesn't work properly :
in the first case : comments(0) should be not displayed
in the second case : the comment box is not displayed

other fact : comment box works well for the images :
in "raid obivwak 2009" album , comments are allowed for CRW_4669 and are not allowed for CRW_4670 : you could see the comment box for the 1st one and don't see it for the 2nd one

thank for you're help

Member
Member
vincent3569   19-03-2010, 10:31
#52

Another question on this wonderfull theme :
Is it possible to have a higher level for lighting pictures when they are not flown with mousse ?
with firebug, I see and I would have 0.8 example

where do I change this value?
i tried to change the ouseOutOpacity value in jquery.opacityrollover.js, but it did not work

Member
Member
gjr   19-03-2010, 14:07
#53

@vincent3569:
Ok for the comments. I cannot figure out why the comment form is not displaying for you on that parent album. I tested this configuration on my test site with a parent allowing comments and the subs not, and it seems to work correctly with this theme. [b]Did you try switching to a default theme to see if the issue is there also? [/b]. It IS a theme bug that the comments link appears on closed items. To fix that, wrap a conditional with getCommentsAllowed() around the whole comment block (should do this for image, news, and pages also)

`

 ()

`

For opacity, if you are using the alt album, which looks like you are, edit these in the js file: js/zpgalleriffic-min.js, otherwise in zpgalleriffic.js.

You will see two opacity var sets -
var onMouseOutOpacity = 0.67; sets the initial opacity of image thumbs, and
var onMouseOutOpacityAlbums = 0.57; sets the initial opacity of album thumbs.

Member
Member
vincent3569   21-03-2010, 23:43
#54

@gjr

in fact, with the default theme, the following code in album.php
`

produce the following html code

`
whenever comments are allowed or not.

=> so, it seems to be a bug of printCommentForm() ?
this function doesn't work well for album's comments

Member
Member
gjr   22-03-2010, 04:16
#55

It is not a bug, just a matter of every theme using the correct conditionals. The theme needs to determine if the comments plugin is activated (function_exists), and then also if the object is allowed for comment (getCommentsAllowed)

Member
Member
vincent3569   22-03-2010, 09:35
#56

compared to previous message, I meant that, whatever the theme, the problem is the same on the [b]album pages[/b] : Comments are not displayed, even if they are allowed : there's no html code between the div tags.

so it seems not to be a problem of your theme but to be a problem of printCommentForm function

Administrator
Administrator
acrylian   22-03-2010, 09:48
#57

No, it is not a problem of the comment form.

The clue is that there is no extra `" around the form neeeded as the form function would print that itself if activated. If comments for the item are disallowed it normally shows something like "closed for comments". If the plugin is deactivated, it of course shows nothing.

Member
Member
vincent3569   23-03-2010, 10:33
#58

sorry, i understood and I found my mistake.
in the admin pages of the comment_form's plugin , there is a check box "Allow comments on" and "Albums" was unchecked.
if the option is checked, all is ok.

on the same subject : is there a function to control if comment are opened or not on an album or an image ?

Administrator
Administrator
acrylian   23-03-2010, 10:59
#59

Sure, there is a checkbox to allow comments specifially for each image, album (as well as Zenpage pages and news).

Member
Member
vincent3569   23-03-2010, 13:02
#60

of course, i know that ;-)
my question was : is there a function which return true ou false if checkbox is checked or not ?

Pages (6):    1 2 3 4 5 6   
  
Powered By MyBB, © 2002-2026 MyBB Group.
Made with by Curves UI.