aijosh
Member
Hello,
I was able to set the meta description for detail view
$pagegrp = $this->groups['Page'];
$elements = $pagegrp->elements;
$picture = $elements['picture']->element;
$details = $elements['details']->element;
$details = strip_tags($details);
$details = substr($details,0,500);
$mydoc = JFactory::getDocument();
$mydoc->setDescription($details);
I couldn't find how to set the default image.
How do I achieve this?
I was able to set the meta description for detail view
$pagegrp = $this->groups['Page'];
$elements = $pagegrp->elements;
$picture = $elements['picture']->element;
$details = $elements['details']->element;
$details = strip_tags($details);
$details = substr($details,0,500);
$mydoc = JFactory::getDocument();
$mydoc->setDescription($details);
I couldn't find how to set the default image.
How do I achieve this?