Forum Activity for @paul

paul
@paul
01/29/14 01:44:59AM
4,335 posts

Bought ISkin 3 but can't download it


Design and Skin Customization

I can see any evidence of your purchase on the Jamroom marketplaces. Maybe you did buy it directly.
Contact Nate.
paul
@paul
01/28/14 06:16:16AM
4,335 posts

jraccliam


Jamroom Developers

Tell us what idea you have and I'll put it in the Requests Section to see who else might be interested -
https://www.jamroom.net/the-jamroom-network/tracker/features
paul
@paul
01/28/14 05:46:41AM
4,335 posts

Add Existing MP3 files without uploading in jrAudio ( Podcasts )


Installation and Configuration

The module does support users adding their own smily sets.
paul
@paul
01/28/14 05:10:55AM
4,335 posts

jraccliam


Jamroom Developers

The Jamroom4 jrAcclaim module didn't actually sell that well so its unlikely that we'll recreate it for Jamroom5.
But iirc, it basically just built a ranking system based on the number of items a profile had created or had received (ratings, comments, visits etc.), with the means to weight the scores for different items?
That being the case, as in JR5 all item counts are on the profile datastore, it would be relatively straightforward to build a custom module to achieve this.
paul
@paul
01/28/14 04:38:31AM
4,335 posts

jr seamless templates


Design and Skin Customization

Each item that the jrSeamless module returns has the variable 'seamless_module_name' which will be 'jrVideo', 'jrYouTube', or whatever, so you can test for that in your template -
{if isset($_items)}
    {foreach from=$_items item="item"}
        {if $item.seamless_module_name == 'jrVideo'}
            Do the Video thing
        {elseif $item.seamless_module_name == 'jrYouTube'}
            Do the YouTube thing
        {/if}
    {/foreach}
{/if}

(Start by sticking a {debug} into the template just to make sure I have the variable name right)
hth
Pa
paul
@paul
01/22/14 01:54:05AM
4,335 posts

Smiley's on comments


Using Jamroom

Have you installed the default smileys in the global tab ?
paul
@paul
01/19/14 10:00:28PM
4,335 posts

Missing Add Button For Audio, Video and Youtube


Using Jamroom

You would need to edit the {jrCore_list ...} in the charts template to tell it what module to list and what to chart by (chartable_plays_count).
paul
@paul
01/19/14 09:22:16PM
4,335 posts

Missing Add Button For Audio, Video and Youtube


Using Jamroom

If you still want songs without actually uploading a file, you could still use the jrAudio module by disabling the file upload field in the form designer.
(Have not actually tried this)
Then add in a text field called 'audio_plays_count' (say) then chart by that field.
The audio_play_count text field will show in the create/update forms.
Pa
paul
@paul
01/19/14 06:46:10PM
4,335 posts

Missing Add Button For Audio, Video and Youtube


Using Jamroom

I think the best option for this would be a custom song module.
Maybe use jrAparna to create the base module, say xxSong, which will have a title field. Then use the Form Designer to add in any additional fields needed.
Make one of the added text field 'song_stream_count' so that you can manually (or otherwise) log the plays. You can then chart by that field.
(Note - any numeric field that ends with '_count' can be charted)
hth
Pa
  418