I just installed PhocaGallery... it's great.. I like it.
However, there's one thing.. I don't want to display 'gallery name' in the article page.
E.g. I create menu item: AAA (type Phoca Gallery Category Layout), and in Parameters-Basic, I select category: BBB.
Then, in the page display at the top, it displays AAA - BBB. I don't want
to display BBB. How to?
Best regards.
How to remove 'gallery name' in page display?
-
- Phoca Newbie
- Posts: 5
- Joined: 11 Dec 2007, 23:46
- Location: Singapore
- Jan
- Phoca Hero
- Posts: 48535
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
You can hide the AAA
You can hide the AAA - BBB in Parameters - System in Menu Manager: Show the page title - No
If you want to hide only BBB, you must do changes in source code:
in joomla/components/com_phocagallery/views/category/tmpl/default.php
remove this piece of code (row + - 7)
if ($this->category->title != '')
{
echo " - " . $this->category->title;
}
Jan
If you want to hide only BBB, you must do changes in source code:
in joomla/components/com_phocagallery/views/category/tmpl/default.php
remove this piece of code (row + - 7)
if ($this->category->title != '')
{
echo " - " . $this->category->title;
}
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 11 Dec 2007, 23:46
- Location: Singapore
remove this piec
remove this piece of code (row + - 7)
It works. Yeah it's what I want...
Thanks much.
It works. Yeah it's what I want...
Thanks much.
- Jan
- Phoca Hero
- Posts: 48535
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
If you find Phoca extensions useful, please support the project