6

the results of my Magento based website's categories includes "items 1 - 9 of X" before the actual description of the category.
How can I get rid of this? In this snapshot, what I want to delete is the red rectangle snapshot

edits:
@Su, these are the reason:

  1. Having text like (Items 1 - 9 of 144 –) appear in a Google listing uses up the 25 word limit that Google allows us.

  2. More importantly, the first few words of the description can persuade or dissuade someone from visiting my site. This text will not positively influence people to visit my site.

@DisgruntledGoat this information shows up in the source code of that page, like this:

<table class="toolbar" border="0">
    <tr>
        <td class="pager" style="width: 414px;">
            <table class="pager" cellspacing="0">
                <tr>
                    <td>Items 1 to 9 of 144 total</td>
                </tr>
            </table>
        </td>
    </tr>
</table>
OSdave
  • 206
  • 1
  • 5
  • As with most of the rich snippets, you're probably asking the wrong question if you want control over it appearing at all. If you're not doing anything special and this information is showing up already, it's unlikely you have much say in that regard. However, you might be able to influence the information some. You should consider editing your question to explain why you object to this showing up. – Su' Mar 26 '12 at 09:39
  • 1
    @Su This is quite interesting, Google are picking up a very odd section of text on the page, where they usually display the access time they are instead displaying the page number http://www.weddingrings.net/unique-rings.html – toomanyairmiles Mar 26 '12 at 10:10
  • Did you remove the pagination from the page? Because I don't see anything that even suggests you have 144 items. – DisgruntledGoat Mar 26 '12 at 12:58
  • @Su' and DisgruntledGoat thank you for your comments, I have edited the question to include the information you asked. – OSdave Mar 26 '12 at 16:41

1 Answers1

2

In looking over your source, it appears that the 1 to 9 of X is the first real content encountered by the crawler. The only suggestion I have is to try making the td a th in the hopes that the crawler will go after the content and not the label.

Joshua Drake
  • 141
  • 6