Page 1 of 1

Re: Title under image

Posted: 08 Apr 2010, 11:40
by Jan
Hi, there is no such feature but this can be customized in the code (in template of categories view). Try to search this forum, there should be some guides.

Jan

Re: Title under image

Posted: 18 May 2010, 23:29
by jakobe75
I am wondering this too, and confused by the answer from the Developer, as this was a heated disscusion some years ago and finally solved.


I have been using phoca on one of my older sites...and I know for a fact I display the images and categories in a grid

with the names UNDER the category and the images.

I made no changes to the script and I installed it by default this way.


however when I upgraded..this feature was lost.
but the older version around 2.5.7

has this built in by default.
no mods
no crazy code changes.

so how can this be done in newer verisons

Re: Title under image

Posted: 30 May 2010, 15:07
by Jan
Hi, sorry I don't understand. This is a default feature of Phoca Gallery - to display titles below thumbnails. Check your parameters and parameters component if this is not disabled there.

Jan

Re: Title under image

Posted: 01 Jun 2010, 20:35
by Nabucco
Ciao ballacoilupi,
I had your same problem and i solved it thanks to Jan's post from this thread: viewtopic.php?f=1&t=793&hilit=name+belo ... l&start=10
File:
components\com_phocagallery\views\categories\tmpl\default.php

row:
67 + -

FROM:
echo '<td align="center" valign="middle" style="'.$this->imagebackground.'"><a h
ref="'.$this->categories[$i]->link.'">'.JHTML::_( 'image.site', $this->categories[$i]
->linkthumbnailpath, '', '', '', $this->categories[$i]->title, 'style="border:0"' ).'
</a></td>'; echo '<td><a href="'.$this->categories[$i]->link.'" class="category'.$this->params
->get( 'pageclass_sfx' ).'">'.$this->categories[$i]->title.'</a> ';


TO:
echo '<td align="center" valign="middle" style="'.$this->imagebackground.'"><a h
ref="'.$this->categories[$i]->link.'">'.JHTML::_( 'image.site', $this->categories[$i]
->linkthumbnailpath, '', '', '', $this->categories[$i]->title, 'style="border:0"' ).'
</a></td></tr>'; echo '<tr><td><a href="'.$this->categories[$i]->link.'" class="category'.$this->pa
rams->get( 'pageclass_sfx' ).'">'.$this->categories[$i]->title.'</a> ';
Now i have titles below thumbnails on categories view!
Thanks Jan!

Re: Title under image

Posted: 09 Jun 2010, 13:41
by Jan
Hi, thank you for the guide.

Jan