ContributionsMost RecentMost LikesSolutionsRe: Reply "Collision detection" PerBonomiI have the reference to this Feature from @DanK. Great feature. I am technically affine but have such a feature not yet built into lithium. Can I read somewhere how this works or is an IT specialist generally necessary? Re: Code snippet for noindexing several archive folders TariqHussainThanks. It works fine now. Great tip with the string. Have a nice weekend Marko Re: Code snippet for noindexing several archive folders TariqHussainI inserted the code at this place: After I inserted your code with the string, the following message appears in the browser: "coreNode.id = ArchivCallYa outside condition" . What does it mean? Re: Code snippet for noindexing several archive folders TariqHussaini have now created the archive folders as i need them. In total there are 12 archives. For testing I changed your code and added two of my new Archiv boards. The "Test_Archive" already existed due to previous tests. For the excisting Archiv "Test_Archive" the noindex Tag was added. But for the two new ones "Archiv_CallYa", "Archiv_Mobilfunk" unfortnatly not. The Archiv Folders are all created with the same settings. Could it be a code error? <#assign catIDs = ["Test_Archive", "Archiv_CallYa", "Archiv_Mobilfunk"] /> <#if catIDs?seq_contains(coreNode.id)> <meta name="robots" content="noindex,follow"> </#if> Re: Code snippet for noindexing several archive folders Indeed we will have 12 archiv bords (Test_Archive, Test_archive2 and so on) in 4 categories (Cat1, Cat2, Cat3, Cat4) in the future. Does the code you sent me last replace the old one or is that a supplement? Re: Code snippet for noindexing several archive folders Great. Thank you for your help. See you Marko Re: Code snippet for noindexing several archive folders TariqHussain Thank you for your help and snippet. Unfortunately I got an error message by using the code: Do you have any idea what have might gone wrong? Code snippet for noindexing several archive folders Hi Everybody, i´m working on a archiving strategy for our community at the moment. As descibed in the how to article I have to ad a noindex Tag to the read only archiv named "Test-Archive" board I created. For this I use this code and it works: <#if coreNode.id == "Test_Archive"> <meta name="robots" content="noindex,follow"> </#if> What should the code look like to use two or more archive folders? I tried this code but unfortunately it doesn´t work: <#if coreNode.id == "Test_Archive", "Test_Archive2"> <meta name="robots" content="noindex,follow"> </#if> Could someone please help me? Thanks Marko SolvedHelpfulness feature for forum Hi Everybody, I found this solved artical for the topic: http://community.lithium.com/t5/Developers-Discussion/Configuring-ratings-helpfulness/m-p/249115#M10618. As described there I inserted the following code to the forum page: <component id="ratings.widget.rating-enum-display" ratingSystemRef="conv:helpfulness"/> And configured the Lithium Admin with the following rating styles: "helpfulness": But the rating doesn´t show up at the forum pages. Has anybody an idea why? Thanks Marko Re: Configuring ratings / helpfulness Hi Everybody, thank you for the workaround. I would like to give it a try. I understood what I have to insert the following code at the Forum Pages to show up the helpfulness feature but I don´t know where exactly. <component id="ratings.widget.rating-enum-display" ratingSystemRef="conv:helpfulness"/> As a result I would like to show up the helpfulness question in all answers marked as accepted solutions. Can anybody help there to insert the code? Thanks Marko