ContributionsMost RecentMost LikesSolutionsRe: Recommendations Slim Mode in Custom Component Hey peterlu, thanks for your reply. The problem in my case is unfortunately not with the recommendation component. I am embedding the components forums.widget.recent-messages, forums.widget.recent-threads and kudos.widget.authors-leaderboard not directly within the quilt but through a custom component, because I have a custom logic check if I should embed them, or not. The mode parameter doesn't work in none of them, but when I embed the components directly in the quilt everything works as expected. So I assume this is a general bug and not specific to the recommendations. Re: Recommendations Slim Mode in Custom Component I also have the same problem: The mode parameter is not respected when you include the component within another custom component. IMHO hiding the unwanted information through CSS is just a temporary workaround and not the solution. Depending on the mode the information is rendered in a different HTML structure: slim mode - the information is presented as an unordered list <ul> wide mode - the information renders the data within a table <table> I think this is a bug, that should be fixed. Re: Latest comments in sidebar limit to 5 I also can't find a setting for this, so currently I do it with jQuery: $(".lia-component-blogs-widget-latest-comments li:gt(4)").hide(); Re: Passing parameters / objects to a custom component? Hey Adam, do you know, if it is possible to pass a boolean as a parameter? It tried it, but it is not working, so I'm currently passing a "true" or "false" as a string. Thanks Nikolay Re: Remove AddThis from Ratings & Reviews PaoloTthanks for the fast response! Which method are you referring to (I think you have the wrong link)? If this is possible, it will be great :) Thanks, Nikolay Re: Q&A ActiveCast to open to a new window Maybe you could try using jQuery. Maybe something like this (didn't test it): <@liaAddScript> (function($) { $(document).ready(function() { $( "[your_container_selector]" ).on( "click", "[your_link_selector]", function() { e.preventDefault(); var url = $(this).attr('href'); window.open(url, '_blank'); }); }); })(LITHIUM.jQuery); </@liaAddScript> I think you'll have to use delegated events cause some of the links are generated later on (e.g. the suggestions when tipping). Hope this helps yot further. Best, Nikolay Remove AddThis from Ratings & Reviews Hi guys, within the "Product Reviews" ActiveCast each Review has automatically the AddThis social bookmarking widget. Looking at the ReviewsMessage quilt, the widget is part of the message-links component, which also holds the comment link generating the comment listing and comment form. Is there a possibility to completely remove the AddThis widget without affecting the commenting functionality? Hiding the widget through CSS is not a solution, because we have to get rid of the tracking cookies AddThis is generating. Thanks for your help in advance, Nikolay Re: Add external JS file with liaAddScript Hi Paolo, great idea, thanks. I don't know why I didn't think of that, since I'm doing something similar somewhere else :) Regards, Nikolay Add external JS file with liaAddScript Hi guys, is it possible to pass some kind of parameter to <@liaAddScript> where I can define an url to an external JS file? In my current use case the file is the jquery-cookie plugin and is located in the assets library. The challenge is that jquery plugins require the jquery library to be loaded first and I can ensure this only by using <@liaAddScript>. Thanks for your help in advance. Nikolay SolvedRe: Changing modal login to page login I believe the configuration is on Studio > Features, specifically the Authentication - change to version 1 will direct you to a login/register page Hi JasonL , how feature-safe is actually this solution? If we have a new Version of the Authentication feature with some functionality, that we will like to use, than we will have to find another solution. I think in the next version of the Authentication feature it will be great to have a configuration setting for the modal dialog on registration and login. Cheers, Nikolay