Forum Activity for @paul

paul
@paul
10/06/14 01:32:27AM
4,335 posts

Uploding files on IOS


Jamroom Developers

Have just tried on my iPad - yes, just photos and video.
Guess its an iOS limitation.
paul
@paul
10/03/14 06:36:47AM
4,335 posts

My site is loading slowly - what can I do?


Using Jamroom

Have just tried it again and it may not be the fastest website I've visited, but its certainly acceptable to me at least.
It will be slower the first visit after clearing caches, but then the cached pages are served to all visitors.
Where in the world is your server? That can make a difference.
paul
@paul
10/03/14 05:38:18AM
4,335 posts

My site is loading slowly - what can I do?


Using Jamroom

http://www.find-et-band.dk
Actually, it seem pretty normal to me. All the images are there quickly.
Have you changed anything or is there specific pages that are slow?
Also, make sure you are not in Developer mode and that caches are enabled.
paul
@paul
10/01/14 02:19:42AM
4,335 posts

Few questions about Aparna


Jamroom Developers

No probs - Let's us know if you need any more help :-)
paul
@paul
10/01/14 02:03:02AM
4,335 posts

Few questions about Aparna


Jamroom Developers

Yes - The templates in an Aparna module are just examples showing fields of what you might create. They'll need editing to show what you subsequently create with the Form Designer.
paul
@paul
10/01/14 01:43:54AM
4,335 posts

Few questions about Aparna


Jamroom Developers

Yes - It makes the whole form designer more flexible.
There might be cases where you want a field in create but not update, and visa versa.
paul
@paul
10/01/14 01:32:18AM
4,335 posts

Few questions about Aparna


Jamroom Developers

Not sure what the 'Add item' and 'edit' forms are you refer to, but after creating an Aparna module, do everything with the Form Designer, for both Create and Update forms.
Pa
paul
@paul
09/30/14 04:59:35PM
4,335 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

To get what a specific user has liked you're going to have to use my initial code above. Put Brian's search parameter in the first jrCore_list.
paul
@paul
09/29/14 06:39:17AM
4,335 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

Just realised I've gone round the houses a bit with the above code. Try this instead -

    {jrCore_list module="jrAudio" order_by="audio_like_count NUMERICAL_DESC" template="null" assign="_likes" limit=$_conf.paMotaNova_default_pagebreak}
    {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" items=$_likes autoplay=true}
In fact, I liked this idea so much I've just implemented it here -
http://motagator.com - click on the 'most liked' link
paul
@paul
09/29/14 01:21:08AM
4,335 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

Have just looked at your original post. Your after a dynamic playlist based on what a user has liked? Try this -
{capture name="my_liked_songs" assign="my_liked_songs"}
{literal}
    {if isset($_items)}
        {foreach from=$_items item="item"}{$item.like_item_id},{/foreach}
    {/if}
{/literal}
{/capture}
{jrCore_list module="jrLike" profile_id="181" search1="like_module = jrAudio" search2="like_action = like" order_by="_item_id NUMERICAL_DESC" template=$my_liked_songs assign="mls"}
{jrCore_list module="jrAudio" search="_item_id IN `$mls`" template="null" assign="_my_liked_songs"}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" items=$_my_liked_songs autoplay=true}
hth
Pa
  381