Hi,
I see now what you want to achieve. One possible way could be based on using WHERE condition property of a repeater to filter blogs with appropriate tag. Let’s assume that you are creating blogs on corporate site. So, you could use standard repeaters on aviation and healthcare site, you just need to specify correct Path and Site name property. To display blogs with tag "aviation" you could use WHERE condition property:
WHERE condition: documenttags like '%aviation%'In case of healthcare site you could filter blogs with tag “ healthcare“ with following WHERE condition:
WHERE condition: documenttags like '%healthcare%'Another way could be adding custom fields to blog document type and use them in WHERE condition instead of tags. In other words, you could add three fields (one for each site let’s say showOnAviation, showOnHealthcare...) of type Boolean to
blog document type and use it to filter displayed blogs. If field contains true, it will be displayed on appropriate site and vice versa. WHERE condition of the repeater on aviation page could look like this one:
WHERE condition: showOnAviation = 1Best regards,
Michal Legen