ContributionsMost RecentMost LikesSolutionsCustom component with node / category Hi, i made custom accordian menu and want to add individual NODES / Categorys in that menu. it looks like this so when OPEN (+) sign is pressed it shows category i wish to present. Think of it as accordian Community Board List component thanks How to make online/offline user information status Hi i want to make information REST call so this info would be in a POST page below user which post a message. for example this: It will show GREY icon when user is offline and GREEN icon when he is online. I found CALL community/restapi/vc/users/online and now what ? :-) Re: How to make online/offline user information status Thank you VarunGrazitti . So basically i make a component with this snippet and put it in POST page. I tried and have freemarker errors.... Re: Visual layout of quotes BenWalke wrote: Hello, One of the most requested changes from our community is in relation to how quotes look. What I'm wondering is if there's a way to change the visual layout of quotes via the CSS of the community style or similar? Thanks! Here you can use my CSS if you want: /*BLOCKQUOTE DESIGN*/ #lia-body .lia-content .lia-message-body blockquote, body.mceContentBody blockquote, #lia-body .lia-content .lia-panel-tooltip blockquote { padding: 10px; margin: 9px 10px 10px; background: none repeat scroll 0% 0% #E0E0E0; border-radius: 5px; border: 1px solid #E0E0E0 ; font: italic 13px Tahoma,Calibri,Verdana,Geneva,sans-serif; position: relative; } If you do it in mobile view also it looks good. I also use TEXT EDITOR to change this field: page.post.original_message_quote.text = [I QUOTE USER:] <strong>@{0}</strong><br/><blockquote>{1}</blockquote> So it looks like this in final (I QUOTE USER is CITIRAM KORISNIKA in my language) Re: Blockquote in message body Well I work my solution thru TEXT EDITOR: page.post.original_message_quote.text = <blockquote><br/>[QUOTE:] {0}<br/>{1}<br/></blockquote> Blockquote in message body Hi, i re-designed blockquote look but i wonder why User info and my automatic Quote sentence (Citiram korisnika): is out of the blocquote field This is the example how i wish to be ordered ... same as on this link http://ficoforums.myfico.com/t5/Understanding-FICO-Scoring/Expanded-quot-FICO-High-Achievers-quot-scores-of-760-and-above/m-p/111682#M12686 SolvedRe: Custom count Thank you Inactive User that was exactly what i was looking for.... Custom count Hi is there a way to call data from community. I want to make a custom component that will show: - how many overall TOPICS are in community - how many overall POSTS (messages) are in community - how many new posts in 24 hours are posted in community thanks. SolvedRe: Member recent posts Thanks guys, I add "View All" link so user can view all of their posts <#if user.id != -1> <div class="RecentPosts"> <#assign recentPosts = rest("/users/id/${user.id}/posts?page_size=5&restapi.response_style=view").node_message_context.message /> <ul> <#list recentPosts as recentPost> <li><a href="${recentPost.@view_href}">${recentPost.subject}</a></li> </#list> </ul> <a id="link_16" class="lia-link-navigation view-all-link" href="/t5/forums/recentpostspage/post-type/message/user-id/${user.id}"> VIEW ALL </a> </div> </#if> Member recent posts Hi to all, I have questions from community members "I can't find my posts that i posted, where to see if somebody replyed to my query". Instead of searching through categories and posts, basically they can go to their profile page and see widget for their recent posts, that widget is ".lia-component-forums-widget-recent-messages" If they click on View all in that widget they go to /t5/forums/recentpostspage/post-type/message/user-id/4 So, I want to make ONE LINK for members on Homepage named "Your recent posts" and linked to that page /t5/forums/recentpostspage/post-type/message/user-id/ But how can i make that link for all users, cause member ID on end is dinamically and it depends on user ID which is loged in community? Any suggestions....? thanks a lot. Solved