Items removed from shop category still showingFixed
I have tried to remove items from the shop categories but it still shows. For instance, in Tools I have the following:
    "Tool": {
      "DisplayName": "Tool",
      "Description": "You currently have {0} coins to spend in the Tool shop",
      "EnabledCategory": true,
      "EnableNPC": false,
      "NPCId": null,
      "Items": [
        "Timed Explosive Charge",
        "RF Transmitter",
        "Supply Signal"
      ]
    },​

When I load the shop, under tools, I still see entries for all of the other tools. With EnableBuy and EnableSell set to false, noone is able to buy/sell them, but they still show in the list. 

Please check to see if there are 2 "Tool" sections in your Config. 

    "Tool": {
      "DisplayName": "Tool",
      "Description": "You currently have {0} coins to spend in the Tool shop",
      "EnabledCategory": True,
      "EnableNPC": false,
      "NPCId": null,
      "Items": [
        "tool.instant_camera"
    ]
},
Mine is setup the same as youres and it is working perfectly fine. Make sure you save the plugin when the plugin is unloaded (o.unload GUIShop) and then reload the plugin :)
I double-checked and there are no duplicate categories. It isn't restricted to the Tool section though. It is every category. With the exception of the commands category. I removed everything from it, and it is working right. 

I thought that I may have a missing comma or something somewhere, but I ran it through JSON linter, and it comes back clean.

Please update to 1.8.4 these issues are fixed remember to add at the top of your config if you haven't already 

unknown.png

Thank you @khan. working great now.  
Locked automatically