Hi,
I have a problem with open graph, in youtube the descripion of an article shows the css style not the real description. I attach a image.
How i fix this?
Thanks!!
danibram wrote:Hi,
I have a problem with open graph, in youtube the descripion of an article shows the css style not the real description. I attach a image.description.png
How i fix this?
Thanks!!
// Set metadata
if ($item->metadesc)
{
$document->setDescription($item->metadesc);
}
else
{
$metaDescItem = preg_replace("#{(.*?)}(.*?){/(.*?)}#s", '', $item->introtext.' '.$item->fulltext);
$metaDescItem = htmlspecialchars($metaDescItem, ENT_QUOTES, 'UTF-8');
$metaDescItem = K2HelperUtilities::characterLimit($metaDescItem, $params->get('metaDescLimit', 150));
$document->setDescription($metaDescItem);
// Set metadata
if ($item->metadesc) {
$document->setDescription($item->metadesc);
}
else {
$metaDescItem = preg_replace("#{(.*?)}(.*?){/(.*?)}#s", '', $item->introtext.' '.$item->fulltext);
$metaDescItem = K2HelperUtilities::characterLimit($metaDescItem, $params->get('metaDescLimit', 150));
$metaDescItem = htmlspecialchars($metaDescItem, ENT_QUOTES, 'UTF-8');
$document->setDescription($metaDescItem);