Content

In addition to being able to change how Auction Nudge looks on your site, you also have control over what content is displayed.

Hiding the "No items found." Text

If Auction Nudge finds no items to display.

When you have no items for sale on eBay, or no items that match the current user selection (category filter/keyword search) Auction Nudge will display "No items found.".

To hide this text, simply add the following CSS rule to your stylesheet:


div.auction-nudge-items p.no-items {
  display: none;
}

You could even take this a step further and use JavaScript to edit the content displayed when there are no active items. More details here.

Hiding the "Buy It Now available" Text

Some themes display "Buy It Now available" next to items when applicable.

To hide this text, simply add the following CSS rule to your stylesheet:


div.auction-nudge-items span.bin-available {
  display: none;
}