Watch the plugin tutorial or refer to the full Auction Nudge help/FAQ page for much more help.
Once the plugin has been enabled, an Auction Nudge box will appear on your edit page/post admin pages underneath the content editor. This box enables you to specify the desired options for the Your eBay Listings, Your eBay Profile and Your eBay Feedback tools.
Once you have set the desired options, you can add the Auction Nudge [auction-nudge] shortcode to your page/post to specify where the content is displayed.
Each Auction Nudge tool has it's own shortcode format:
<!-- To display Your eBay Listings --> [auction-nudge tool="listings"] <!-- To display Your eBay Ads --> [auction-nudge tool="ads"] <!-- To display Your eBay Profile --> [auction-nudge tool="profile"] <!-- To display Your eBay Feedback --> [auction-nudge tool="feedback"]
As well as adding Auction Nudge content to your pages/posts using the [auction-nudge] shortcode you can also call the plugin directly from your theme files.
To use this feature, generate your code snippets from the Auction Nudge website and paste them in to the appropriate boxes in the Settings > Auction Nudge > Within Your Theme page. You can then use the following functions to add Auction Nudge within your theme files:
/* To display Your eBay Listings */ <?php an_items(); ?> /* To display Your eBay Profile */ <?php an_profile(); ?> /* To display Your eBay Feedback */ <?php an_feedback(); ?>
As well as choosing from different themes when you generate your Auction Nudge code you can also change the appearance using simple CSS rules. Auction Nudge will automatically use the default CSS rules for your web page, for example the default font and link colours so it integrates nicely with your page.
You can change the CSS rules for Auction Nudge by adding them to the Auction Nudge CSS Rules section of the plugin options page. See the Auction Nudge Help page for more information and examples.
As a quick example, to make all of the product titles bold you would add this rule to your style sheet:
div#auction-nudge-items td.title {
font-weight: bold;
}
To change the alternating background colours when displaying rows of items you would add this rule to your style sheet:
div#auction-nudge-items table.columns tr {
background-color: red; /* Change to desired colour */
}
div#auction-nudge-items table.columns tr.alt {
background-color: blue; /* Change to desired colour */
}
All themes can be adjusted in this way.
To reduce server load, Auction Nudge does not update every time it is loaded on your site. The tools update as follows:
The following links should help with most questions and issues:
If you need to report an error or bug, you can do so here.