Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

ImageGallery captions


Go to End


8 Posts   2149 Views

Avatar
Bronwyn

Community Member, 22 Posts

2 June 2010 at 4:13pm

Hi, I'm trying to make a page on our dept website with photos of all the staff and students. I like the ease of ImageGallery, but I want to be able to put the person's name under their picture so we can search by name or by face. I've got as far as figuring out that the bit I want to edit is in $GalleryLayout, but this doesn't appear to be a file, or at least not one I can find. Am I going to find it easier to just create an Image DataObjectManager thing?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

3 June 2010 at 1:40am

Yup. Use an ImageDOM. ImageGallery is just going to get in your way.

You could also subclass ImageGalleryPage and ImageGalleryItem with your own classes. In your ImageGalleryPage subclass, add:

protected $itemClass = "YourImageGalleryItemSubclass";

And in YourImageGalleryItemSubclass, add all the custom fields you like.

Avatar
RichMcNabb

Community Member, 34 Posts

28 June 2010 at 1:46pm

Hi There,

I have edited the GalleryUI_layout.ss file so it includes the image and caption below it -

<% control GalleryItems %>
<li>$GalleryItem</li>
<li>$Caption</li>
<% end_control %>

Is there a way I can make the Caption a link similar to the specific GalleryItem? Cheers!

- Rich

Avatar
ShaneLumos

Community Member, 11 Posts

30 May 2011 at 1:38am

hello UncleCheese
I am new at a lot of this with silverstripe and I would like to make the ImageGallery Caption be able to be multiline when on hover and on click can you help me this is the website http://www.lumoswebdesign.com.au/portfolio/album/website

Avatar
UncleCheese

Forum Moderator, 4102 Posts

31 May 2011 at 3:07pm

Well there are a number of ways to do that, but if you're not comfortable with programming, then I'd say the easiest solution is to wrap the caption in a <pre> tag. :)

---------------
Silverstripe tips, tutorials, screencasts, and more. http://www.leftandmain.com

Avatar
ShaneLumos

Community Member, 11 Posts

31 May 2011 at 5:11pm

thank you UncleCheese

That is good can you tell me in what file in ImageGallery I would do the modify code in.
cheers
shane

Avatar
chillburn.com.au

Community Member, 12 Posts

1 June 2011 at 11:59am

If anyone is interested, I helped shane by editing the prettyphoto [image_gallery/gallery_ui/prettyphoto/javascript/jquery.prettyPhoto.js] javascript source file.

What we did is add a replace to the title attribute.

Line 135:
change
descriptions.push($(this).attr('title'));
to
descriptions.push($(this).attr('title').replace(/\n/g,'<br />'));

and line 140 change
descriptions = ($(this).attr('title')) ? $(this).attr('title') : '';
to
descriptions = ($(this).attr('title')) ? $(this).attr('title').replace(/\n/g,'<br />') : '';

Cheers.

Avatar
ShaneLumos

Community Member, 11 Posts

1 June 2011 at 7:52pm

thank you that did the job