I've tested it my end and it works. That's why I wanted a url.
Have the same issues as well. Example url above 
Must be a Beatport issue, because it was working fine earlier.
Can't see what's wrong though. Maybe you can see the issue.
Works fine here. Seems its either something with beatport earlier or your scripts and/or Mp3tag need updating if not done so.
Doesn't have a title in your screenshot as well 
Which by the way is the only issue I have as well. All other fields are working fine.
I might have missed that before. There's no title in beatports json in some cases it seems. Trying to find a way around that.
easy fix instead of saying it's an issue of blabla bla engineerrrss...
json_select "title" # TITLE
ifnot ""
sayrest
else
json_select "name"
sayrest
say " ("
json_select "mix"
sayrest
say ")"
endif
say "|"
This is what I've done earlier. I found a bug in the single tracks scripts too. But it's like it's a timing issue or an Mp3tag bug because it's intermitant. Not sure.
But this will check mix if it's empty or not.
I'll bundle this along with the other single track fix when I find out what's wrong.
# outputto "TITLETEMP" # TITLE|TITLETEMP
outputto "TITLE" # TITLE|TITLETEMP
json_select "title"
if ""
json_select "name"
sayrest
json_select "mix"
ifnot ""
say " ("
sayrest
say ")"
endif
say "|"
endif
Edit
Although, I've found other's where this doesn't work like: https://www.beatport.com/release/halloween-grooves-e-p/3170830
Maybe it's been a long day but can you try this guys. Sometimes it's working and sometimes it's not.
Try this, it seems to be better skipping the title altogether and using the name and the mix.
outputto "TITLE"
json_select "name"
sayrest
json_select "mix"
ifnot ""
say " ("
sayrest
say ")"
endif
say "|"
Gonna check it out, for the first few releases it works perfectly again! 
Wow, just stumbled on this and registered to say THANK YOU to @stevehero and everyone who helped along the way.
I still don't understand why I'm getting better results with some requests with your scripts just adding " 20" to the search string but most of the time it will narrow results or even find some tracks giving no results founds without it.
To test, just try searching "Fur Coat Adagia"
and then "Fur Coat Adagia 20"
Have a nice day.
Tip number 2 :
just replace "&" in artists with nothing.. you're getting better results searching by example "OIBAFWALLEN" than "OIBAF&WALLEN"
This is due to that release been released in 2020.
Works even with ones released in 2021
This works very nice, too:
Search by label name using the "Beatport Artist + Release.src" script leaving the "RELEASE by Album Artist" field empty and putting the label name in the "Release" field.
@ Wannastayunercover Maybe because "20" is a part of "2021" 
EDIT: You are right! This release from 1996 "Sven VΓ€th - Six In The Mix" does not show up when I search for the album title only, but adding a "20" brings it up.
Well, so does this:
https://www.beatport.com/search?q=SIX+IN+THE+MIX+12345678910
It returns less results than:
https://www.beatport.com/search?q=SIX+IN+THE+MIX+20
Not sure why this is. Probably a beatport fuzzy search thing in their backend search engine.
I might add label searching in the future release.
- Release and label
- Artist and label
My title field is empty after using the script. Everything was very well yesterday
.
Try this fix. I haven't implemented it as it would be good for you guys/gals to test it.
Update on the ol' scripts.
v5.05 2021.02.09
- FIX: _TIME_CHECK field was getting parsed when there was 1 and 10 to 19 tracks.
- FIX: TITLE field was missing on both the TRACK and RELEASE scripts. Beatport changed something their end.
Then I noticed I had done something stupid.
v5.06 2021.02.09
- FIX: Removed unwanted json_unselect_object in TRACK scripts.
- FIX: replace "Original Mix" """" is now used as opposed replace "(Original Mix)" "".
- CHG: Changed the amount of search results for TRACK scripts to 100 as opposed 25.
Is it possible to do as before so that when searching for "Track - Filename", this window immediately appears, without a list of releases.
Is it possible to bypass the release list when using "Track - Filename"?
Hello Steve, you have to amend your code : your scripts are getting the same IDs for beatport trackIDs and ReleaseIDs :
ReleaseIDs are to get collected using :
outputto "BEATPORT_RELEASE_ID"
json_select_object "release"
json_select "id"
json_unselect_object
sayrest


