ContributionsMost RecentMost LikesSolutionsRe: Block new Replies via API... Can it be done? Fellsteruk Two links that might be usefull: -How to block replies -Rest API v2 (message resource) You might want to keep an eye on that one two as it talks aboutLiQL and date format That should help as a start! Re: 15.11 Release Notes SheenaKit's probably best to raise a case with Lithium support. I've seen this happening.Based on my tests, somehow, Twitter do not recognize the image URL set by Lithium. Although, bear in mind that the images should be smaller than 1 Mb. You could try as well to paste your URL in the Twitter validator to check what's wrong:https://cards-dev.twitter.com/validator Re: Re-download all components PerBonomino idea if it would work or not ... have you tried: li export-studio-plugin --force --points endpoint Re: How do I exclude messages from a particular board using a LiQL query? dustinI haven't checked the documentation but I think you can use the clause 'IN', so: SELECT * FROM messages WHERE category.id IN ('xxxxxxxx','yyyyyyyy','zzzzzzzz') AND depth=0 ORDER BY post_time DESC LIMIT 15 It's not the best has you might add categories in the future, or you might have a long list of categories ... Another option is to run your request for all categories, then add a if statement to eliminate everything from your test category. SELECT * FROM messages WHERE depth=0 ORDER BY post_time DESC LIMIT 15 This isn't the correct freemarker syntax, just an idea: if message.board.id != 'test' then {do what you want to do with your messages } Re: Lithium-Klout SDK installation problem peterluwe don't have any VirtualBox image to share, unfortunately. Could you please post the errors you got during the installation as well as the exceptions when using the li export-studio-plugin command? Re: Overwrite default quilt with SDK? PerBonomiI think you have to use li clear-studio-plugin, with the 'points' flag. But unfortunately, you will clear all studio quilts, not only the one(s) you want: --points: Only works if the --force flag is used. A comma-delimited set of 5 or less plugin points to include, in case you only want to clear a sub-set of the studio plugin. You can also set the pluginPoints property in server.conf.json to always only clear the plugin points you specify. Plugin points you can specify are: asset,badge_icon,component,endpoint,init,layout,macro,quilt,rank_icon,skin,survey_icon,text Once cleared, you can submit the ones from your SDK. Re: Adding a placeholder text to the rich text editor Claudiusone way to do it would be to use a TinyMCE class. I suppose you could add it somewhere in a script, but you would have to be sure the editor is fully loaded in order to work. It might be best to include this in the TinyMCE init, but would probably require Lithium professional services ... Re: Skin SASS customization suffrageIn Studio > Community Style don't you have a SAAS tab? Also, it might be best posting such question in the support forum next time. Re: Freemarker With Roles Maikinostry this code: <#assign userStar = rest("2.0","/search?q=" + "SELECT * FROM roles WHERE users.id = '${user.id}'"?url) /> <#list userStar.data.items as role > <p>${role.name}</p> <#switch role.name> <#case 'Nivel_Test1'> <div class="banner_cr"><img src=" ${asset.get("/html/assets/imagen.jpg")}" /></div> <#break> <#case 'Nivel_Test2'> <div class="banner_cr"><img src=" ${asset.get("/html/assets/imagen.jpg")}" /></div> <#break> <#case 'Nivel_Test3'> <div class="banner_cr"><img src=" ${asset.get("/html/assets/imagen.jpg")}" /></div> <#break> <#case 'Administrator'> <div class="banner_cr">Welcome Administrator!</div> <#break> <#default> <div></div> </#switch> </#list> You can remove this line, it was just for debugging purpose: <p>${role.name}</p> And this line too, it's just because I don't have your roles: <#case 'Administrator'> <div class="banner_cr">Welcome Administrator!</div> <#break> Re: [SDK] error on doing li create-project gstelangI'm not an expert. But my installation on my iMac worked just fine (well, it took me some time as at first the lithium-sdkreturned lots of errors / warnings). I'm using a more recent version of node and npm, maybe you could try to upgrade and re-install the sdk? iMac:~ salmoliv$ node --version v4.3.1 iMac:~ salmoliv$ npm --version 2.14.12 iMac:~ salmoliv$ npm ls -g lithium-sdk --depth=0 /usr/local/lib └── lithium-sdk@1.0.2