Forum Activity for @douglas

douglas
@douglas
01/03/15 10:37:22AM
2,807 posts

Media Pro 5 - Light Blog menu button


Design and Skin Customization

Are you seeing any activity, debug or php error logs in your ACP > System Tools > Activity Logs?

Thanks!
douglas
@douglas
01/03/15 10:32:23AM
2,807 posts

Media Pro 5 - Light Blog menu button


Design and Skin Customization

Make sure you've checked out the skins readme file.

yoursite/skins/jrMediaProLight/readme.html

there are blog categories you'll want to use to get the blog to show in the correct sections.

Hope this helps! :)
updated by @douglas: 01/03/15 10:32:44AM
douglas
@douglas
01/01/15 02:48:39PM
2,807 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

Glad to hear it.

I'll get it added in for the next release.

Thanks! :)
douglas
@douglas
01/01/15 02:25:31PM
2,807 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

Before trying to add in the clearing div, replace your skins/jrNingja/jrGallery_index.tpl file with this code:

{jrCore_include template="header.tpl"}

{capture name="template" assign="tpl"}
{literal}
{jrCore_module_url module="jrGallery" assign="murl"}
{if isset($_items)}
<div class="container">
        {foreach from=$_items item="item"}
{if $item@iteration == 1 || $item@iteration == 5 || $item@iteration == 9}
    <div class="row">{/if}
        <div class="col3{if $item@iteration == 4 || $item@iteration == 8 || $item@last} last{/if}">
            <div class="img-profile">
                <a href="{jrGallery_get_gallery_image_url item=$item}" title="{$item.gallery_alt_text}">{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_alt_text}</a><br>
            </div>
            <div class="center mb10">
                <a href="{jrGallery_get_gallery_image_url item=$item}" title="{$item.gallery_alt_text}" class="bold">{if isset($item.gallery_image_title)}{$item.gallery_image_title|truncate:30:"...":false}{else}{$item.gallery_image_name|truncate:30:"...":true}{/if}</a><br>
                <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item.gallery_title_url}/all" class="media_title">{$item.gallery_title}</a><br>
                <a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom:10px"><span class="capital">@{$item.profile_url}</span></a>
            </div>
        </div>
{if $item@iteration == 4 || $item@iteration == 8 || $item@last}
	</div>
{/if}
        {/foreach}
</div>
{/if}
{/literal}
{/capture}

<div class="block">

    <div class="title">
        {jrSearch_module_form fields="gallery_title,gallery_image_title,gallery_caption,gallery_description,gallery_image_name"}
        <h1>{jrCore_lang module="jrNingja" id=36 default="Images"}</h1>
    </div>

    <div class="block_content">
        <div class="item">
            <div class="container">
                <div class="row">
                    {jrCore_list module="jrGallery" order_by="_updated numerical_desc" require_image="gallery_image" pagebreak=12 page=$_post.p pager=true template=$tpl}
                </div>
            </div>
        </div>
    </div>

</div>

{jrCore_include template="footer.tpl"}

and let me know if that fixes it.

Thanks!
douglas
@douglas
01/01/15 07:35:39AM
2,807 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

A clearing div won't help. The problem is the title is too long and takes up space for the next image, so it gets pushed down.

I seen this before and the only solution was to shorten the title.

Thanks!
douglas
@douglas
01/01/15 07:25:36AM
2,807 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

One way to fix that is to use a truncate on the title variable.

For example change this:

<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item.gallery_title_url}/all" class="media_title">{$item.gallery_title}</a><br>

to this:

<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item.gallery_title_url}/all" class="media_title" title="{$item.gallery_title}">{$item.gallery_title|truncate:25:"...":false}</a><br>

Hope this helps! :)
douglas
@douglas
12/31/14 11:28:19AM
2,807 posts

Changing default image sizes in Home Page Galleries, Profiles


Ning To Jamroom

thechocolatelife:
Brian -

I was able to make the changes in skins/jrNingJa/jrGallery_index.tpl without any problems.

However, I don't see any similar mechanism inside "skins/jrNingja/jrProfile_index.tpl"

I did find a Col3 I could change to Col2 (and Col1 also works) in "skins/jrNingja/jrProfile_item_list.tpl" but there is no pagebreak call in this template. Where is that located? With thousands of members, I am sure one is needed.

In looking at the Image Galleries section on the home page I also don't see a way to change the sizes. However, I did notice what I think is a typo in the code. I am not sure how important it is but ....

defaul="All"} at the end of the clip below should probably be default="All"}. The HTML parser is stripping stuff so what follows is not an exact copy of what's in index.tpl.

{* BEGIN Latest Images Section *}
{if isset($_conf.jrNingja_latest_images) && $_conf.jrNingja_latest_images == 'on'}

{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang module="jrGallery" id="25" default="Gallery"} {jrCore_lang skin=$_conf.jrCore_active_skin id="21" default="Images"}   {jrCore_lang skin=$_conf.jrCore_active_skin id="30" defaul="All"}

The jrProfile_index.tpl uses the jrProfile_item_list.tpl by default, which is why you don't see a template parameter in the jrCore_list function in your jrProfile_index.tpl.

So you can change the page break in the jrProfile_index.tpl file, and the image size in the jrProfile_item_list.tpl for the Profile page.

I've also got the index.tpl typo fixed for the next release.

Hope this helps! :)
douglas
@douglas
12/31/14 08:35:47AM
2,807 posts

Changing default image sizes in Home Page Galleries, Profiles


Ning To Jamroom

thechocolatelife:
Another typo?

skins/jrNingja/jrProfile_item_list.tpl

should crop="protrait" be crop="portrait" ?

Yes, it should be portrait. I'll get that fixed up for the next release.

Thanks!
douglas
@douglas
12/29/14 04:08:17AM
2,807 posts

Suggestion for the Timeline on Main Page


Ning To Jamroom

There isn't a way to delete timeline entries from the front/index page of your site. You must be on your profiles index/timeline page to delete timeline entries.

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/29/14 03:44:21AM
2,807 posts

Jamroom.net redesign


Using Jamroom

I'm not seeing an issue with this, using FF 34.0.5, command click opens those links in a new tab for me.
  182