Hello sebloders, here's the thing I try to accomplish:
In my case every article must have an intro image, also seen by 3rd party extensions. That's why I created field 'Upload image' (with storage: JSON/Article/images[image_intro]) - everybody can easily browse for a local image and easily place it in article. So far so good.
But often there is no dedicated intro image, so I wanted to place a standard image whenever there is no image pointed by user in 'Upload image'. In this case this standard image is shown instead. To achieve this, I set 'Default value' of the field to 'images/standard_image.jpg' (of course the image is uploaded to 'images' directory). The thing is: thist standard image is shown in both intro and content view of the article, but 3rd party extensions (like 'News Show Pro GK5') don't see this image, because in content table in image column there is only: {"image_intro":""} instead of {"image_intro":"images/standard_image.jpg"}.
So here's my question: what should I do to have this standard image's location placed in my database whenever there is no other intro image placed?
Thank you in advance