Forum Activity for @douglas

douglas
@douglas
11/13/14 05:48:55AM
2,807 posts

Site Builder Menu


Installation and Configuration

That module belongs to the site builder bundle and only works with the other modules and skin from that bundle. I don't believe it will work with any skin other than the jrSlate skin.

Hope this helps! :)
douglas
@douglas
11/09/14 06:02:45AM
2,807 posts

only add img code if user uploaded img


Design and Skin Customization

I gave you the other code too, the problem was the variable profile_cover_image never gets anything set to check against, so we needed to check for the image size and if it set show it otherwise show something else.

I'm glad its working for you now! :)
douglas
@douglas
11/09/14 05:56:43AM
2,807 posts

confusion


Using Jamroom

Your welcome! ;)
douglas
@douglas
11/08/14 12:34:43PM
2,807 posts

confusion


Using Jamroom

You can modify the header.tpl for your skin in the ACP > Skins > YOUR-ACTIVE-SKIN > Templates section. You can also upload a new logo image via the Images tab for YOUR-ACTIVE-SKIN as well and modify your header_menu_desktop.tpl and header_menu_mobile.tpl files as well.

Or you can modify the templates directly by using a FTP client to download the skins/YOUR-ACTIVE-SKIN/header.tpl, header_menu_desktop.tpl,header_menu_mobile.tpl and your skins/YOUR-ACTIVE-SKIN/img/logo.png templates and files.

However... If you modify the templates directly, you may want to clone the skin first. This way updates to the skin do not overwrite your modifications.

You can clone a skin via the ACP > Site Tools > Developer Tools > Tools > Clone Skin. Note: you'll need the Develper Module installed.

Hope this helps! :)
douglas
@douglas
11/08/14 04:54:37AM
2,807 posts

Simple HTML and CSS usage in Jamroom


Design and Skin Customization

Jamroom takes a little getting use to and can be daunting at first, but once you start to understand how things work, it becomes easier and easier.

A new template for the Elastic skin might look something like this:

{jrCore_include template="header.tpl"}

{* BEGIN CONTAINER *}
<div class="container">

    {* BEGIN ROW *}
    <div class="row"> 

        {* BEGIN LEFT SIDE *}
        <div class="col3">

            {* Left Side Block *}
            <div class="block">
                <div class="title">
                    <h2>Title Here</h2>
                </div>
                <div class="block_content">
                    <div class="item">
                        jrCore_list function here to show a list of items.
                    </div>
                </div>
            </div>

        </div>
        {* END OF LEFT SIDE *}



        {* BEGIN CENTER SECTION *}
        <div class="col6">

            <div class="title">
                <h2>Title Here</h2>
            </div>
            <div class="block_content">
                <div class="item">
                    jrCore_list function here to show a list of items.
                </div>
            </div>

        </div>
        {* END CENTER SECTION *}

        {* BEGIN RIGHT SIDE *}
        <div class="col3 last">

            {* Left Side Block *}
            <div class="block">
                <div class="title">
                    <h2>Title Here</h2>
                </div>
                <div class="block_content">
                    <div class="item">
                        jrCore_list function here to show a list of items.
                    </div>
                </div>
            </div>

        </div>
        {* END RIGHT SIDE *}

    </div>
    {* END ROW *}

</div>
{* END CONTAINER *}

{jrCore_include template="footer.tpl"}


updated by @douglas: 11/08/14 05:00:59AM
douglas
@douglas
11/08/14 04:41:45AM
2,807 posts

only add img code if user uploaded img


Design and Skin Customization

I just tested this on my dev site and you'll want to use this:

{if isset($profile_cover_image_size) && strlen($profile_cover_image_size) > 0}
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image" item_id=$_profile_id size="xlarge" class="img_scale" alt=$profile_name title=$hover width=false height=false}{else}
Something else here...
{/if}

Hope this helps! :)
douglas
@douglas
11/07/14 02:18:28PM
2,807 posts

jrUrlScan module NOT WORKING...


Design and Skin Customization

Make sure you have the Convert Media URLs (UrlScan) checkbox checked in your ACP > Core > Quota Config for the quotas your allowing this feature.

Hope this helps! :)
douglas
@douglas
11/07/14 01:53:30PM
2,807 posts

creating a profile cover photo (1 missing peicce to the puzzle)


Ning To Jamroom

Stick a debug in the template and see if you can see the variable available.

{debug}

updated by @douglas: 12/29/14 09:23:54AM
  197