Page 3 of 3

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 24 Jun 2010, 12:48
by Jan
Hi, did you look at the code in module?

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 09 Jul 2010, 11:47
by mmicko
Thank you for your help Jan - this was one of the issues what i have discovered during customization. :twisted:
Could be this setting directly in Global configuration?
Because now is Shadowbox customization very limited.

Michal

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 09 Jul 2010, 14:37
by Jan
Hi, added into the feature request list (but no idea if this will be added - as there are a lot of parameters which can be added to the settings - over 500 but all could not be added as then the site will be not loaded :-( )

Jan

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 09 Jul 2010, 15:21
by mmicko
Hi Jan,
i understand. Thank you for your effort.

Re: Shadowbox gallery : how to hide file name ?

Posted: 29 Oct 2010, 12:34
by pequenoxan
Jan wrote:Hi, then it should be customized in the code:

components\com_phocagallery\views\category\tmpl\default.php

comment line 173

from:

Code: Select all

echo ' title="'. $value->title.'"'; 
to:

Code: Select all

//echo ' title="'. $value->title.'"';  
Jan
Thanks Jan, with this solution the title don´t show in Sahowbox, but If a see a image because a "clic" in PhocaGallery Module, the title shows in shadowbox.
Sorry for my bad english, but I don´t understend how to solve this in the Phocagallery Module.

Many thanks.

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 31 Oct 2010, 19:05
by Jan
Hi, then just find the same code in the module php file and replace it.

Jan

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 12 Jul 2012, 19:51
by bart198x
Hello.
That was two years ago :) .
I have the same question about shadowbox and no file name displaying.
Which file exactly, and which line. Phocagallery version 3.2.1
I didn't find that line from previous posts in that version.

Re: [SOLVED] Shadowbox gallery : how to hide file name ?

Posted: 12 Jul 2012, 20:32
by bart198x
ok I have found
components/com_phocagallery/assets/js/shadowbox/src/skin/classic/skin.css
113: #shadowbox_title {
114: height: 26px;
115: }

line 114 change value 26 to 0

113: #shadowbox_title {
114: height: 0px;
115: }

mayby not beautifull but works :) font size is 0 and it's not visible :)
if there is more estetic solution please refer.