Forum Activity for @michael

michael
@michael
05/26/14 07:19:01PM
7,832 posts

Freelance Jobs


Suggestions

If you want an email notification of a reply, take a quick check that that target icon is orange. If it isn't, click it and you'll get one.

(the target icon at the top of this thread on the right)
michael
@michael
05/23/14 01:49:25AM
7,832 posts

Chained Select Improvement


Suggestions

just tried here right now and did not have any issues.

Clicked on core update. It finished and when the page refreshed, it was on the 'System Updates' tab. I clicked on "Update All Items" and it all updated normally.

Are there any errors in your console. Try running the integrity check then come back to updates to see if that makes a difference. and check the "clear cache" checkbox while you run.

See how that goes.
michael
@michael
05/22/14 09:28:08PM
7,832 posts

jrSeamless


Jamroom Help

chorton581:
the code also is not working correctly
i get
audio item audio item
audio item
There is room on the table row but the 3rd one will go to the 3rd spot
http://www.versionist.net/index-new

i created an index_list1 and it is pointing to the right location but i can not seem to get them all on same line.

The display issue is one that is showing up because of the HTML. You have a table with 2 td's in it, then one with 1 td in it.

Need to fix that html structure.

Try this:
<table>
    {foreach $_items as $item}
    {if $item.seamless_list_rank % 3 == 0}
        <tr>
    {/if}
    <td width="33%">
       {* Whatever is already inside your foreach loop *}
    </td>
    {$end = $item.seamless_list_rank +1 }
    {if $end % 3 == 0}
        </tr>
    {/if}
    {/foreach}
</table>
michael
@michael
05/22/14 09:21:30PM
7,832 posts

jrSeamless


Jamroom Help

show items 1~24:
{jrSeamless_list modules="jrAudio,jrSoundCloud" 
order_by="_created desc" template="seamless_row.tpl" pagebreak="24" page=$_post.p pager=true}

show items 25~49:
{$next_page = $_post.p + 1}
{jrSeamless_list modules="jrAudio,jrSoundCloud" 
order_by="_created desc" template="seamless_row.tpl" pagebreak="24" page=$next_page pager=true}
michael
@michael
05/22/14 09:16:43PM
7,832 posts

Songs still plays full length using the mp3 importer


Using Jamroom

I downloaded that song from your website, then uploaded it to my test server. It correctly created the mp3 sample at the 30sec i had set.

in the activity log there was this entry:
Quote: [admin] : converted 1/59/audio_file from mp3 to MP3 in 1.83 seconds

all worked fine.
michael
@michael
05/22/14 08:58:55PM
7,832 posts

Form Response


Suggestions

still a little unclear. how bout a #1,#2,#3 walkthrough.
michael
@michael
05/21/14 09:50:00PM
7,832 posts

Form Designer - Upload image field can't pull it in


Design and Skin Customization

Try:
{jrCore_module_function function="jrImage_display" module="maYourModule" type="profile_dj_header" item_id=$item._item_id .........}
michael
@michael
05/21/14 09:16:34PM
7,832 posts

Tiny MCE Smileys and a dark template


Installation and Configuration

This has been implemented in the latest version of core and jrSmiley.
michael
@michael
05/21/14 02:50:32AM
7,832 posts

Display uploaded files and download them


Jamroom Developers

provided {$murl} is defined, that looks like it should work fine when clicking on the download icon.
michael
@michael
05/21/14 02:06:55AM
7,832 posts

Display uploaded files and download them


Jamroom Developers

I cant read the code your putting into images. use [ code ] blocks so I can check it.

If your using a normal href then there is no javascript so no redirect token is needed.
  693