Page 1 of 1

Re: How to create meta tags?

Posted: 27 Dec 2009, 16:43
by Jan
Hi, for now there is no such option :-( This is planned.

Jan

Re: How to create meta tags?

Posted: 04 Jan 2010, 10:32
by thunder_go
If you have any description in the category you can just simply add

Code: Select all

$doc =& JFactory::getDocument();
$doc->setMetaData( 'description', 'Some text: '. strip_tags($this->category->title) .' '. strip_tags($this->category->description));
right after

Code: Select all

<?php
defined('_JEXEC') or die('Restricted access'); 
on com_phocagallery/views/category/tmpl/default.php

... and it will put your title and text description as your <meta> desc :)

Re: How to create meta tags?

Posted: 25 Jan 2010, 18:53
by Jan
Hi, this was added in Phoca Gallery 2.6.2

Jan