Display only catogory name

Phoca Gallery plugins - plugins for Phoca Gallery extension
orsomannaro
Phoca Member
Phoca Member
Posts: 10
Joined: 21 Dec 2010, 23:36

Display only catogory name

Post by orsomannaro »

I use the plugin to display the list of subcategories of a specific category.

What I see now:

cat1 >> subcat1
cat1 >> subcat2
cat1 >> subcat3
...

What I would like to see:

subcat1
subcat2
subcat3
...

Is it possible? How can I do?
Thank.
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48403
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Display only catogory name

Post by Jan »

Hi, then you need to customize the php code (to not display the whole part of category - subcategory) :-(

Jan
If you find Phoca extensions useful, please support the project
orsomannaro
Phoca Member
Phoca Member
Posts: 10
Joined: 21 Dec 2010, 23:36

Re: Display only catogory name

Post by orsomannaro »

Jan wrote:Hi, then you need to customize the php code (to not display the whole part of category - subcategory) :-(
Jan
Ok. I arranged the plugins/content/phocagallery.php code like this:

find:

Code: Select all

. $category->title.'</a>&nbsp;<span class="small">('.$category->numlinks.')</span>'
replace with:

Code: Select all

. substr($category->title, strrpos($category->title,"&raquo;") + 7).'</a>&nbsp;<span class="small">('.$category->numlinks.')</span>'
it seem to work (if all categories are subcategories!).
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48403
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Display only catogory name

Post by Jan »

Ok, great to hear it.

Jan
If you find Phoca extensions useful, please support the project
Post Reply