Hi,
I used below code to display Content Instances under a channel and its working.
<c:if test="${not empty currentChannel}">
<c:forEach var="content" items="${currentChannel.contentInstances}" varStatus="counter">
<a href="${linkUrl}">${content.system.name}</a>
</c:forEach>
</c:if>
But, it displaying Default English and Translation Content also. Eg
Test Article - English
Test Article - French
Can you please help me how to display Content Instances based on current Language.
like if I am in English will display "Test Article - English" otherwise "Test Article - French"/
We have an option in Smartlist "language is equal to currentLanguage" but programatically how we can write.
Thanks
Jayaram