Plugin Author
Joe
(@morehawes)
Hi andy0829,
Thanks for reaching out. The Category List option is a fairly new feature that currently is being trialled on the Auction Nudge website. I do this with all new features before rolling them in to the WordPress plugin to ensure all of the bugs are ironed out before major release. Unfortunately this isn’t always clear and can create a little confusion, which I must apologise for.
If you would like to use the Category List feature you will need to generate your code snippet through the Auction Nudge website and install it onto your site manually:
https://www.auctionnudge.com/your-ebay-items
You can add the code snippet to your page manually by pasting it into the “Text” tab of the WordPress content editor, using the built-in WordPress Text/HTML widget or using a plugin to add JavaScript to a page.
Unfortunately it is not currently possible to use an and (+) selector in this way using the keyword filter. I hope you are able to use a combination of filters to suit your needs.
Please let me know if I can help with anything else.
Joe
Thanks Joe , In the end it was much easier for me to use the code generator on your website as i’m placing the listings with hooks and using some ACF custom fields for the keyword choice.
It’s all going very well and it’s very easy to use and modify. A very nice plugin 🙂
Do you have a code example for the Javascript to change the text “No active items.”
thanks again
Plugin Author
Joe
(@morehawes)
Hi andy0829,
No problem, I’m glad you’re happy with the plugin. The following JavaScript should achieve what you are looking for:
function auction_nudge_loaded() {
an_wrap = document.getElementById('auction-nudge-items');
an_no_items = an_wrap.getElementsByClassName('no-items');
if(typeof an_no_items[0] != 'undefined') {
an_no_items[0].innerHTML = '***Content***';
}
}
All the best,
Joe
Plugin Author
Joe
(@morehawes)
Marking as resolved. Please let me know if there is anything else I can help with.
Joe