Keyword

Import Image URL in the head.php file

  • Eddy Eddy
  • Eddy Eddy's Avatar Topic Author
  • Offline
  • New Member
More
13 years 3 months ago #97293 by Eddy Eddy
Import Image URL in the head.php file was created by Eddy Eddy
Hi everyone !

 

I'm a total newbie in PHP so I ask you something. Thank you for your replies :)

 

I have to include this code in the meta (in head.php) so Facebook can recognize the good thumb when somebody like or share one of my article : <meta property="og:image" content="URL"/>

 

But, the URL change on every article, I know that in item.php I can retrieve this URL with the following code : <img src="<?php echo $this->item->image; ?>" /> but in the head.php it doesn't work.

 

So, how can I do to include the URL of the K2 image into the head.php from joomla ?

 

Thank you a lot for taking time to solve this problem.

Please Log in or Create an account to join the conversation.

  • Eddy Eddy
  • Eddy Eddy's Avatar Topic Author
  • Offline
  • New Member
More
13 years 3 months ago #97294 by Eddy Eddy
Replied by Eddy Eddy on topic Import Image URL in the head.php file
I founded the solution after a long day of research !

 

Add this in the item.php of your k2 template :

 

<?php            $facebookogtag .= '<meta property="og:image" content="'.$this->item->imageXLarge.'"/>' ."\n";        $document =& JFactory::getDocument();        $document->addCustomTag($facebookogtag);        ?>

Now when somebody like or share your page, it'll always be with the article thumb ;)

Please Log in or Create an account to join the conversation.

More
13 years 3 months ago #97295 by Sergio Lopez
Replied by Sergio Lopez on topic Import Image URL in the head.php file
Awesome, and what about the category item view? Will work the same?

 

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago #97296 by Dario Pintarić
Replied by Dario Pintarić on topic Import Image URL in the head.php file
Awesome, thank you :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum