Created
March 27, 2019 09:28
-
-
Save yogeshdubey2006/6dd8e3429058927ee909ba87eeec1f9d to your computer and use it in GitHub Desktop.
Magento - Twitter & facebook meta cards
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
<meta http-equiv="Content-Type" content="<?php echo $this->getContentType() ?>" /> | |
<title><?php echo $this->getTitle() ?></title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<?php | |
if (Mage::registry('current_product')) { | |
$current_product = Mage::registry('current_product'); | |
$desc = preg_replace('/\s+?(\S+)?$/', '', substr(strip_tags(str_replace(array("\r\n", "\r", "\n"), "", $this->getDescription())), 0, 150)); | |
$desc = str_replace("’","'", $desc); | |
$desc = str_replace(" "," ", $desc); | |
?> | |
<meta name="description" content="<?php echo $desc; ?>" /> | |
<?php } else { ?> | |
<meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" /> | |
<?php } ?> | |
<meta name="robots" content="<?php echo htmlspecialchars($this->getRobots()) ?>" /> | |
<link rel="icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" /> | |
<link rel="shortcut icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" /> | |
<meta property="og:type" content="website"/> | |
<?php | |
if (Mage::registry('current_product')) { | |
$product_image = Mage::getModel('catalog/product_media_config')->getMediaUrl($current_product->getSmallImage()); | |
?> | |
<meta property="og:description" content="<?php echo $desc;?>"/> | |
<meta property="og:image" content="<?php echo $product_image;?>" /> | |
<meta property="og:title" content="<?php echo $current_product->getName();?>" /> | |
<meta property="og:url" content="<?php echo Mage::app()->getStore()->getCurrentUrl(false); ?>"/> | |
<meta name="twitter:card" content="product"> | |
<meta name="twitter:title" content="<?php echo $current_product->getName();?>" /> | |
<meta name="twitter:description" content="<?php echo $desc;?>" /> | |
<meta name="twitter:image" content="<?php echo $product_image;?>" /> | |
<meta name="twitter:data1" content="$<?php echo number_format($current_product->getPrice(),2);?>"> | |
<meta name="twitter:label1" content="PRICE"> | |
<?php if($current_product->getStockItem()->getIsInStock()) { ?> | |
<meta name="twitter:data2" content="In stock!"> | |
<?php } else { ?> | |
<meta name="twitter:data2" content="Out of stock"> | |
<?php } ?> | |
<meta name="twitter:label2" content="AVAILABILITY"> | |
<meta name="twitter:site" value="@YourTwitterHandle"> | |
<?php | |
} else { // regular CMS page... not a product | |
?> | |
<meta property="og:description" content="Your website description for facebook"/> | |
<meta property="og:title" content="My Company Name Store"/> | |
<meta property="og:image" content="http://www.domain.com/facebook-image.png"/> | |
<meta property="og:url" content="http://www.domain.com/"/> | |
<?php } ?> | |
<meta property="og:locale" content="en_US" /> | |
<meta property="og:site_name" content="My Company Name Store"/> | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment