Export related items in export translator
I would like to list related items in an export translator. Whay I need to do is too get all the related items a list their names. any sugestios how toget the list of related items?
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
var related;
for(i = 0; i < item.seeAlso.length; i++){
related.push(item.seeAlso[i].title)
}
pagetext.push("RELATED:"+related.join("|"));
What I get is that seeAlso has length 0....