Preventing lock placement on small wood crates?

Hi, So im trying to make it so players when they put down a small chest it doesnt auto lock it. I am also trying to remove it so it doesnt go on the shop fronts. If you can help me with that aswell  And was wondering if any1 can help me :) 

It doesnt do it for the large box only the small and teh shop fronts. 

I know you have probably figured this out and this is an old post! But, in the config you can add prefabs that the codelocks dont place on.

So you would need to add:
assets/prefabs/deployable/woodenbox/woodbox_deployed.prefab
assets/prefabs/building/wall.frame.shopfront/wall.frame.shopfront.prefab

(Btw, you can get a prefab list from https://www.corrosionhour.com/rust-prefab-list/)

So your config would look like this:

{
  "Disabled Items (Prefabs)": [
    "assets/prefabs/deployable/woodenbox/woodbox_deployed.prefab",
    "assets/prefabs/building/wall.frame.shopfront/wall.frame.shopfront.prefab"
  ]
}
5b70575aa411b.png MrPadingy

I know you have probably figured this out and this is an old post! But, in the config you can add prefabs that the codelocks dont place on.

So you would need to add:
assets/prefabs/deployable/woodenbox/woodbox_deployed.prefab
assets/prefabs/building/wall.frame.shopfront/wall.frame.shopfront.prefab

(Btw, you can get a prefab list from https://www.corrosionhour.com/rust-prefab-list/)

So your config would look like this:

{
  "Disabled Items (Prefabs)": [
    "assets/prefabs/deployable/woodenbox/woodbox_deployed.prefab",
    "assets/prefabs/building/wall.frame.shopfront/wall.frame.shopfront.prefab"
  ]
}

Appreciate it, But yeah I figured it out. Thanks anyways.