Okay, thank you. Can you tell me how to set up the first feature? ^^'
It's in the plugin parameter list, I think it's called "Show Zero Quantity".
Yeah, but show zero just shows when item=0, and I wanted to show the quantity if item>1; if 1 then does not show. Like if I got a tool (which is always 1), then don't show the quantity. Would be so cool if you could implement that <3
Find this part in the code:
if (quantity > 0 || showZeroQuantity) {
Change 0 to 1 and you should have what you need.
Worked, thank you so much.