Forum Activity for @paul

paul
@paul
06/03/14 03:16:11AM
4,335 posts

Union and Join in Jamroom


Jamroom Developers

There's a whole set of JR functions specifically for working with data stores.
Let us know what you are trying to do and we can point you in the right direction.
paul
@paul
06/02/14 01:46:24PM
4,335 posts

Admnister a Jamroom site $


Using Jamroom

A bit more of a 'job description' might help. Its not clear what you want someone to do, or if this is a full time, part time or one-off job.
paul
@paul
06/02/14 01:39:54PM
4,335 posts

Where can i find certified jr5 developers ?


Jamroom Developers

Maybe a brief description of the project would help.
Or become a Jamroom VIP member and put a full project description in the 'Jobs' section to target our developers directly.
hth
Pa
paul
@paul
05/20/14 11:24:17AM
4,335 posts

jrSeamless


Jamroom Help

Its basically what is already inside your foreach loop -
<table>
    {foreach from=$_items item="item}
    {if $item.seamless_list_rank % 3 == 0}
        <tr>
    {/if}
    <td width="33%">
       {* Whatever is already inside your foreach loop *}
    </td>
    {if $item.seamless_list_rank % 3 == 0}
        </tr>
    {/if}
    {/foreach}
</table>
paul
@paul
05/20/14 12:45:11AM
4,335 posts

jrSeamless


Jamroom Help

In the row template, you can use the seamless_list_rank variable like this -
<table>
    {if $item.seamless_list_rank % 3 == 0}
        <tr>
    {/if}
    <td width="33%">
        Item code here
    </td>
    {if $item.seamless_list_rank % 3 == 0}
        </tr>
    {/if}
</table>
paul
@paul
05/19/14 06:03:06AM
4,335 posts

JR Database


Using Jamroom

They are in the jr_jruser_item_key datastore table.
hth
Pa
paul
@paul
05/16/14 05:49:57AM
4,335 posts

Development server


Jamroom Help

You are allowed to install purchased modules on two different URLs, the idea being that as well as the main site, you'll also have a test/development site, so yes, go ahead.
hth
Pa
paul
@paul
05/16/14 02:39:31AM
4,335 posts

Pet Peeve


Off Topic

"It seems that this process is seamless"
Two different words and meanings :-)
paul
@paul
05/16/14 12:23:40AM
4,335 posts

Pet Peeve


Off Topic

'Seam' and 'Seem'
I know that we're all "separated by a common language" but that difference really gets to me for some reason ;-)
paul
@paul
05/13/14 03:45:46AM
4,335 posts

Is it possible to auto hide/show header in jr5


Design and Skin Customization

RickStaRr:
Hello Paul & thank you for your reply. So are you saying that I should also edit the meta.tpl file as well & include which path, you didn't give more insight when mentioning the meta.tpl file? Please excuse my ignorance as I am still transitioning to the jr5 code, coming from jr4.
Thanks

In some of the skins, the meta.tpl include is 'nested' inside the header.tpl, so just excluding the header template could cause issues as the meta would not then be included. Try something like this as a guide, maybe in the index.tpl template -
{if !jrCore_is_mobile_device() && !jrCore_is_tablet_device()}
  {jrCore_include template="header.tpl"}
{else}
  {jrCore_include template="meta.tpl"}
{/if}
Pa
  394