2

リッチ スニペットが結果に表示されない理由を Google に問い合わせたところ、次のように回答されました。

URL: http://www.theprinterdepo.com/hp-color-laser-4700dn-printer-q7493a-r
Markup Type: Product, Reviews

    Hidden content: <span itemprop="reviewCount">6</span>

IE 開発者ツールをチェックインしましたが、実際には非表示になっていますが、html には非表示になっていません。何が間違っているのでしょうか?

<?php if ($this->getReviewsCount()): ?>
    <div class="ratings">
        <?php if ($this->getRatingSummary()):?>
          <span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
            <div class="rating-box">

                <div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"><meta itemprop="ratingValue" content="<?php echo $this->getRatingSummary()/10 ?>"/></div>
                <span itemprop="reviewCount"><?php echo $this->getReviewsCount() ?></span>
            </div>
          </span>
        <?php endif;?>
        <p class="rating-links">
            <a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
            <!--<span class="separator">|</span>-->
            <!--<a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>-->
        </p>
    </div>
<?php elseif ($this->getDisplayIfEmpty()): ?>
    <p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
<?php endif; ?>
4

1 に答える 1

3

あなたがこれを読んでいる間、あなたは自分自身に非常に面白いでしょう.

あなたの問題はCSSにあります。/skin/frontend/default/MAG060062/css/styles.css ファイルの 529 行目に移動します。問題は.rating-boxクラスにあります。

.rating-box {
    background: url("../images/bkg_rating.gif") repeat-x scroll 0 0 transparent;
    font-size: 0;
    height: 10px;
    line-height: 0;
    text-indent: -999em;
    width: 50px;
}

以下のように置き換えます

.rating-box {
    background: url("../images/bkg_rating.gif") repeat-x scroll 0 0 transparent;
    height: 10px;
    width: 50px;
}

変更の削除

  • フォントサイズ: 0;
  • 行の高さ: 0;
  • テキストインデント: -999em;

Firebug のスクリーンショット

ここに画像の説明を入力

IE 開発者ツール

ここに画像の説明を入力

常に目を開けてください。笑 :)

于 2012-11-05T21:32:38.777 に答える