Here is an instruction on how to do it - link
Create a file in the app folder "utils.py"
Insert code
def comma_splitter(tag_string):
return [t.strip().lower() for t in tag_string.split(',') if t.strip()]
TAGGIT_TAGS_FROM_STRING = 'appname.utils.comma_splitter'