"Executive Objects" Google Rich Data Testing Tool

ThemeBurn SupportForumsOpenCart ThemesBurnEngine"Executive Objects" Google Rich Data Testing Tool

This topic has been marked as not resolved.

Even before I added the custom module – Google Structured Data Testing Tool was showing an entry that is correct, all except for “Executive Object” under Seller instead of STORE

seller

@type
Organization
name
Executive Objects

My custom module is showing the correct information.. I found the where the code is- within the google tool…looked for it in products.tpl but couldn’t find

any clue?

you’ll see the one for Open Graph and then two additional – the 1st of those two contains custom added “Description” is functioning correctly per custom mod.

The second one.. contains “Executive Object” in the seller component instead of store name.
Even before I installed custom.. this occurred.

 USSC
August 14, 2017 at 2:38 am #60974

Hi,

The problem is confirmed. We will provide a fix shortly.

Generally you don’t need to install a custom module since BurnEngine provide this feature for product pages.

The information is output in catalog/view/theme/BurnEngine/template/product/product.tpl:

<script type="application/ld+json">
{
  "@context":         "http://schema.org/",
  "@type":            "Product",
  "name":             "<?php echo $heading_title; ?>",
  "image":            "<?php echo $thumb; ?>",
  "description":      "<?php echo utf8_substr(strip_tags($description), 0, 200); ?>",
  <?php if ($tbData->common['manufacturers_enabled'] && $manufacturer): ?>
  "brand":{
    "@type":          "Thing",
    "name":           "<?php echo $manufacturer; ?>"
  },
  <?php endif; ?>
  <?php if ($rating): ?>
  "aggregateRating":{
    "@type":          "AggregateRating",
    "ratingValue":    "<?php echo $rating; ?>",
    "reviewCount":    "<?php echo filter_var($reviews, FILTER_SANITIZE_NUMBER_INT); ?>"
  },
  <?php endif; ?>
  "offers":{
    "@type":          "Offer",
    "priceCurrency":  "<?php echo $tbData->currency_code; ?>",
    <?php if (!$special): ?>
    "price":          "<?php echo $product_info['price_num']; ?>",
    <?php else: ?>
    "price":          "<?php echo $product_info['special_num']; ?>",
    <?php endif; ?>
    "availability":   "<?php echo strip_tags($stock); ?>",
    "seller":{
      "@type":        "Organization",
      "name":         "Executive Objects"
    }
  }
}
</script>

BR,
ThemeBurn team

August 16, 2017 at 5:39 pm #61026
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.