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;
}

Auction Nudge in Other Languages

Auction Nudge tools officially support English, French, German, Spanish and Italian.

To change which language is displayed, use the language option when creating your code snippet.

The text displayed by the Your eBay Listings feed can be translated into another language using some simple JavaScript, which must be included within the HTML of your page.

You can view the demo which explains how to do this or view the source.