solved like button and funktions

Bandwerkstatt
Bandwerkstatt
@bandwerkstatt
9 years ago
224 posts
Hello, Jamroom + team.

It would be absolutely brilliant if not only my "I like it" songs, videos and so on were indicated in a list. . . me as a user it would be still perfect to if I could click from the list also immediately again "i like them not"-> disslike.

In addition interesting if me is also indicated who has marked things of me with "i like it".
Also interesting if I could make the list to "i like it" climbing up or descending, so that me is indicated who has in most "likes" and which least "likes".

Many thanks!
Stefan
updated by @bandwerkstatt: 06/25/15 02:41:36PM
michael
@michael
9 years ago
7,715 posts
All of that is possible with the jrCore_list function now, you'd just need to implement it.

Start with:
{jrCore_list module="jrLike" template="some_template.tpl"}

In the some_template.tpl file loop over the liked things with a link to their item_list.tpl file
{foreach $_items as $item}
{jrCore_include template="item_list.tpl" module=$item.module}
{/foreach}

You can use the order_by to get the list of newest liked stuff, most liked stuff, or limit it to a particular quota or profile etc...

"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

Tags