Forum Activity for @douglas

douglas
@douglas
12/04/14 09:24:37AM
2,812 posts

defaulting to www


Ning To Jamroom

You'll want to modify your data/config/config.php file and add the www to the $_conf['jrCore_base_url'] setting.

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/04/14 09:06:56AM
2,812 posts

Language and Menu links


Ning To Jamroom

Make sure you've added the URL to the Admin forum in your ACP > System Tools > Skin Settings > Site Index > Forum Profile URL field.

Hope this helps,
Douglas
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/04/14 04:44:59AM
2,812 posts

Language and Menu links


Ning To Jamroom

Michael is right, its an oversight, I'll get that fixed for the next release.

Thanks!
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/04/14 04:41:21AM
2,812 posts

galery grid minor issue


Ning To Jamroom

Portrait might be a better option for those images.

crop="portrait"

updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/03/14 04:24:02AM
2,812 posts

Can't Find Forum Template


Design and Skin Customization

The part shaded in read from you image is in the profile_header.tpl in your active skin directory.
douglas
@douglas
12/02/14 04:50:50AM
2,812 posts

User can change Profile Quotas


Jamroom Help

I'm seeing the same, I don't think regular users should be able to see the quota drop down. I'll get a ticket open fro this.

Thanks!
douglas
@douglas
12/01/14 10:58:02AM
2,812 posts

Blog Text Reset Size


Ning To Jamroom

Isleander:
I believe it is the "site.css" that governs text size in blogs.
The text is larger now that I have increased it. :)

That is good to know, glad you got it fixed. :)

Thanks!
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/01/14 08:07:43AM
2,812 posts

Blog Text Reset Size


Ning To Jamroom

I'm not aware of a way to reset all templates or css files.

The following CSS files for the jrNingja skin have font size values...

base.css, footer.css, header.css, html.css, profile.css, site.css and text.css

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/30/14 02:11:04PM
2,812 posts

suggestions for photo grid page


Ning To Jamroom

I've actually got a fix for this in the next release. It is still 6 across on PC's but a better layout for mobile devices.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/30/14 02:56:16AM
2,812 posts

User Requests


Ning To Jamroom

paul:
Yeah - It could do with a bit of styling to control it. This works -
<div class="container">
    <div class="row">
        <div class="col12 last">
            <div class="item">
                {if isset($_items)}
                    <div class="row">
                        {foreach from=$_items item="item"}
                            <div class="col2{if $row@last} last{/if}">
                                <div class="center" style="padding:10px;">
                                    {$item.profile_name|truncate:20}<br>
                                    <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img-profile" alt=$item.profile_name title=$item.profile_name width=172 height=172}</a>
                                </div>
                            </div>
                        {/foreach}
                    </div>
                {/if}
            </div>
        </div>
    </div>
</div>

This should actually be this:

<div class="container">
    <div class="row">
        <div class="col12 last">
            <div class="item">
                {if isset($_items)}
                    <div class="row">
                        {foreach from=$_items item="item"}
                            <div class="col2{if $item@last} last{/if}">
                                <div class="center" style="padding:10px;">
                                    {$item.profile_name|truncate:20}<br>
                                    <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img-profile" alt=$item.profile_name title=$item.profile_name width=172 height=172}</a>
                                </div>
                            </div>
                        {/foreach}
                    </div>
                {/if}
            </div>
        </div>
    </div>
</div>

The if statement to check to see if it is the last column, ie. class="col2 etc... should be $item not $row.
updated by @douglas: 12/29/14 09:23:54AM
  190