Forum Activity for @michael

michael
@michael
01/05/17 07:18:36PM
7,832 posts

$item.list_rank


Using Jamroom

Here's a different version. Doug pointed out that since there is only 1 in the list it will always be position #1, so in this version we get the top 50. If the current song is in the top 50 then its positon in that top 50 is shown.


{capture assign="list_tpl"}
{literal}
    {foreach $_items as $item}
    {if $item._item_id == $_params.my_id}
    my place in the top 50 list is: {$item.list_rank}
    {/if}
    {/foreach}
{/literal}
{/capture}
{jrCore_list module="jrSoundCloud" chart_field="soundcloud_stream_count" chart_days="365" limit=50 template=$list_tpl my_id=$item._item_id}

This one is for soundcloud songs, adjust the variables as you need them.
michael
@michael
01/05/17 12:37:32PM
7,832 posts

How to Include "Add to Timeline" for Forum/Create when posting as Admin?


Using Jamroom

thanks for helping locate these issues and reporting them in a way that allows us to fix them. :)
michael
@michael
01/05/17 12:26:16PM
7,832 posts

Aparna - FormDesigner


Using Jamroom

did you send your details? not seeing them here yet.

Unless you've customized the jrCore form_???.tpl files with an over-ride or edit, then you should be getting the same format im getting.

Its a form field added by the form designer, not your module specifically, so the image should be there. I'll take a look.

What Im expecting to see is something interfering with it, maybe some javascript from something else hiding it, or a template over-ride or a different form field than an image field. Not really sure, just guessing. Yours should be the same as mine.

Maybe its one of the other fields on the page in combination with the image field that makes the image field behave differently. again, not sure.
michael
@michael
01/05/17 12:07:51PM
7,832 posts

$item.list_rank


Using Jamroom

The info is not there by default, but you can request it using the same system you used to get a full list of it, but then limit the list to just the item id that you're after.

Put this into your item detail page for the jrAudio module and you will get just the rank if its ranked:

        {capture assign="list_tpl"}
                {literal}
                    THE LIST RANK IS: {$_items.0.list_rank}
                {/literal}
        {/capture}
        {jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="365" template=$list_tpl search1="_item_id = `$item._item_id`"}

updated by @michael: 01/05/17 12:09:19PM
michael
@michael
01/04/17 09:02:45PM
7,832 posts

Is feature like this available ?


Using Jamroom

Get the rest of it setup first, then see if you need the custom module. Or are you wanting someone to setup all your quotas for you as well.
michael
@michael
01/04/17 09:01:56PM
7,832 posts

Aparna - FormDesigner


Using Jamroom

send them to support at jamroom dot net with attn michael and a link to this thread and I'll take a look.

Site modules all up to date? integrity check? reset caches? would have expected that to be working.
michael
@michael
01/04/17 12:27:45PM
7,832 posts

Latest Activity showing "Holly posted a new comment on Holly"


Using Jamroom

you can reset the template if you like, or not, it will be the same. maybe if you're feeling uncertain use the compare tool. That will show both files are the same. If both files are the same then using the default is a good idea.
michael
@michael
01/04/17 12:25:03PM
7,832 posts

Aparna - FormDesigner


Using Jamroom

It should do, I ran through the process yesterday to check and this is what I see. are you sure the image got uploaded?

--edit--

If you have an account I can use, I can login and see what I see from here if you like.
screenshot_image_form_field.png screenshot_image_form_field.png - 70KB

updated by @michael: 01/04/17 12:26:03PM
michael
@michael
01/04/17 12:19:44PM
7,832 posts

OG Tags Not Working


Using Jamroom

We were going to add just a /meta.tpl, but now we're going to add a /item_detail_meta.tpl and an /item_index_meta.tpl so you can also add socal meta stuff to the list pages if you want.
  297