Forum Activity for @douglas

douglas
@douglas
12/20/14 12:52:15PM
2,812 posts

contact us tpl media pro


Installation and Configuration

I think something may have changed from the time this was setup and now as I'm having the same issues as you. For now, I would just change the link in the footer to go to the users private notes section... ie change the link from this:

                    {if jrCore_module_is_active('jrCustomForm')}
                        |&nbsp;<a href="{$jamroom_url}/form/contact_us">{jrCore_lang skin=$_conf.jrCore_active_skin id="81" default="Contact Us"}</a>
                    {elseif jrCore_module_is_active('jrPrivateNote')}
                        |&nbsp;<a href="{$jamroom_url}/contact_us">{jrCore_lang skin=$_conf.jrCore_active_skin id="81" default="Contact Us"}</a>
                    {/if}

to this:

                    {if jrCore_module_is_active('jrCustomForm')}
                        |&nbsp;<a href="{$jamroom_url}/form/contact_us">{jrCore_lang skin=$_conf.jrCore_active_skin id="81" default="Contact Us"}</a>
                    {elseif jrCore_module_is_active('jrPrivateNote')}
                        |&nbsp;<a href="{$jamroom_url}/note/new">{jrCore_lang skin=$_conf.jrCore_active_skin id="81" default="Contact Us"}</a>
                    {/if}

If you have the Simple Custom Forms module, just activate it and that link will be used instead of the private notes link.
douglas
@douglas
12/20/14 12:27:23PM
2,812 posts

contact us tpl media pro


Installation and Configuration

Thanks, I'll check that out.
douglas
@douglas
12/20/14 12:08:20PM
2,812 posts

New Ningja Updates.


Ning To Jamroom

Isleander:
Had no option... tried everything else. Only when I deleted the modules could I get my home page back.

That is odd because all I have to do is deactivate the jrPanel module and my site goes back to the normal Ningja skin.

Did you try clearing your cache after deactivating the module(s)?
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/20/14 12:06:07PM
2,812 posts

new ningja unchecked checkboxes on update


Ning To Jamroom

If your trying to use the Site Builder with the latest Ningja skin, your not going to see anything until the Site Builder .json file is released.

I would hold off on using the Site Builder with Ningja at this time.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/20/14 12:04:56PM
2,812 posts

I Lost my Profile Menu on Update


Ning To Jamroom

It may not work as the active skin needs to have the skin setting for the forum URL.

You might try adding that to your active skins config.php file, other than that, I don't think using Ningja with other skins is going to work.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/20/14 12:02:41PM
2,812 posts

Fix for Profile Index Displayed Categories


Ning To Jamroom

It would be better if you did this instead.

{* Latest Music and Latest Videos Row *}
       
        <div class="row">

            {if $profile_jrAudio_item_count > 0}
            <div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                   {jrCore_include template="profile_index_music.tpl"}
                </div>
            </div>
            {/if}


            {if $profile_jrVideo_item_count > 0}
            <div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                     {jrCore_include template="profile_index_video.tpl"}
                </div>
            </div>
            {/if}

        </div>

updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/20/14 11:59:22AM
2,812 posts

contact us tpl media pro


Installation and Configuration

If you have the Custom Forms module, make sure it is activated, I believe it comes with the contact us form.

If you don't you'll need to have the Private Notes module activated.

Without either of those modules, the contact us page will not work.

Hope this helps! :)
douglas
@douglas
12/20/14 11:08:13AM
2,812 posts

seo and gallery


Using Jamroom

If you want to redo you edits, do the reset first, clear your cache and then start with you edits.

Hope this helps! :)
updated by @douglas: 12/22/16 11:55:59AM
douglas
@douglas
12/20/14 09:39:17AM
2,812 posts

seo and gallery


Using Jamroom

Which skin are you using?

If its a clone of the Ningja skin, it was fixed in the latest version. You'll want to modify your jrGallery_index.tpl file and find this:

            {foreach from=$_items item="item"}
            <div class="col3{if $item@last} last{/if}">
                <div class="center" style="margin:10px;">
                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_image_name|urlencode}" title="{$item.gallery_caption|default:$item.gallery_image_name|jrCore_entity_string}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="large" crop="auto" class="iloutline img_scale img-profile" alt=$item.gallery_image_name title=$item.gallery_image_name}</a><br>
                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_title_url}" title="{$item.gallery_title}">{$item.gallery_title|truncate:25:"...":false}</a><br>
                    <a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom: 10px;">@{$item.profile_url}</a><br>
                </div>
            </div>
            {/foreach}

and change it to this:

            {foreach from=$_items item="item"}
            <div class="col3{if $item@last} last{/if}">
                <div class="img-profile"{if jrCore_is_mobile_device()} style="margin-bottom:50px;"{/if}>
                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_image_name|urlencode}" title="{$item.gallery_caption|default:$item.gallery_image_name|jrCore_entity_string}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="large" crop="auto" class="iloutline img_scale" alt=$item.gallery_image_name title=$item.gallery_image_name}</a><br>
                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.gallery_title_url}" title="{$item.gallery_title}">{$item.gallery_title|truncate:25:"...":false}</a><br>
                    <a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom: 10px;">@{$item.profile_url}</a><br>
                </div>
            </div>
            {/foreach}

Hope this helps! :)
updated by @douglas: 12/22/16 11:55:59AM
douglas
@douglas
12/20/14 07:29:09AM
2,812 posts

seo and gallery


Using Jamroom

Have you checked with a mobile device?

Some of the mobile CSS will only work on mobile devices, resizing your computers browser won't always work.

Hope this helps! :)
updated by @douglas: 12/22/16 11:55:59AM
  186