[SOLVED] Shadowbox gallery : how to hide file name ?
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
Hi, did you look at the code in module?
If you find Phoca extensions useful, please support the project
-
mmicko
- Phoca Newbie

- Posts: 6
- Joined: 09 Jul 2010, 09:54
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
Thank you for your help Jan - this was one of the issues what i have discovered during customization.
Could be this setting directly in Global configuration?
Because now is Shadowbox customization very limited.
Michal
Could be this setting directly in Global configuration?
Because now is Shadowbox customization very limited.
Michal
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
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
Jan
If you find Phoca extensions useful, please support the project
-
mmicko
- Phoca Newbie

- Posts: 6
- Joined: 09 Jul 2010, 09:54
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
Hi Jan,
i understand. Thank you for your effort.
i understand. Thank you for your effort.
-
pequenoxan
- Phoca Newbie

- Posts: 8
- Joined: 29 Oct 2010, 12:30
Re: Shadowbox gallery : how to hide file name ?
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.Jan wrote:Hi, then it should be customized in the code:
components\com_phocagallery\views\category\tmpl\default.php
comment line 173
from:to:Code: Select all
echo ' title="'. $value->title.'"';JanCode: Select all
//echo ' title="'. $value->title.'"';
Sorry for my bad english, but I don´t understend how to solve this in the Phocagallery Module.
Many thanks.
- Jan
- Phoca Hero

- Posts: 49150
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
Hi, then just find the same code in the module php file and replace it.
Jan
Jan
If you find Phoca extensions useful, please support the project
-
bart198x
- Phoca Newbie

- Posts: 7
- Joined: 04 Jun 2012, 21:40
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
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.
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.
-
bart198x
- Phoca Newbie

- Posts: 7
- Joined: 04 Jun 2012, 21:40
Re: [SOLVED] Shadowbox gallery : how to hide file name ?
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.
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
if there is more estetic solution please refer.