Forum Activity for @dazed

Dazed
@dazed
09/01/14 01:41:10PM
1,022 posts

Help on PJ News


Using Jamroom

perfect. Thanks everyone :)
Dazed
@dazed
09/01/14 07:51:00AM
1,022 posts

Help on PJ News


Using Jamroom

page break set to 4.
Dazed
@dazed
08/31/14 01:40:32PM
1,022 posts

Help on PJ News


Using Jamroom

just did a second look and I see what the issue is. Because the test post is short, the second post info is jumping up next and ends up next to the image. How is a good way to fix this? I just added 7 lines of text and the uploaded image is still larger than the rows and the second posts Info line is actually being cutoff by the image.

Ideas?
- 50KB

updated by @dazed: 08/31/14 02:02:38PM
Dazed
@dazed
08/31/14 01:24:07PM
1,022 posts

Help on PJ News


Using Jamroom

it may be my skin. It looks like you have done a lot of changes so let me look at it.
Dazed
@dazed
08/31/14 01:17:50PM
1,022 posts

Help on PJ News


Using Jamroom

made the change that way but I still am showing the "Posted By" row for both admin and other user that is posting.
Dazed
@dazed
08/31/14 10:48:44AM
1,022 posts

Help on PJ News


Using Jamroom

ok i can try that route also.
Dazed
@dazed
08/31/14 10:33:34AM
1,022 posts

Help on PJ News


Using Jamroom

Douglas did you add a secondary user to post in the News section? When I add the below on the index.tpl I get the dual "By" line for user and admin. The same is true for modifying the site_news.tpl.

            {jrCore_list module="jrBlog" order_by="_created desc" search1="_profile_id in 1,166144" search2="blog_category = news" template=$site_news_template pagebreak="4" page=$_post.p}

updated by @dazed: 08/31/14 10:36:36AM
Dazed
@dazed
08/31/14 09:43:59AM
1,022 posts

Help on PJ News


Using Jamroom

Hey Brian - This is the stock site_news.tpl template. And yes I mean the by line info. So the user I added created a test thread and I am displaying the admin info as well.
Dazed
@dazed
08/31/14 08:55:07AM
1,022 posts

Help on PJ News


Using Jamroom

Yeah I am looking at it but I do not see why it is bringing in both. There is a conditional statement there - item.profile_id == '1' that I have played with but it did not make a difference.

        <div id="site_news_div" class="body_3" style="margin-bottom:40px;">
            {* ROW TEMPLATE *}
            {capture name="row_template" assign="site_news_template"}
                {literal}
                    {if isset($_items)}
                    {jrCore_module_url module="jrBlog" assign="murl"}
                    {foreach from=$_items item="item"}
                    <div style="padding:10px;">
                        <div class="br-info" style="margin-bottom:20px;">
                            <div class="blog-div">
                                <span class="blog-user capital"> By {$item.profile_name}</span>
                            </div>
                            <div class="blog-div">
                                <span class="blog-date"> {$item.blog_publish_date|jrCore_format_time:false:"%m/%d/%y"}</span>
                            </div>
                            <div class="blog-div">
                                <span class="blog-tag capital"> Tag: {$item.blog_category}</span>
                            </div>
                            {if jrCore_module_is_active('jrComment')}
                            <div class="blog-div">
                                <span class="blog-replies">
			                    {if $item.profile_id == '1'}
                                    <a href="{$jamroom_url}/news_story/{$item.blog_title_url}#comments"><span class="capital">{jrCore_lang module="jrBlog" id="27" default="comments"}</span>: {$item.blog_comment_count|default:0}</a>
                                {else}
                                	<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}#comments"><span class="capital">{jrCore_lang module="jrBlog" id="27" default="comments"}</span>: {$item.blog_comment_count|default:0}</a>
                                {/if}
                                </span>
                                <span class="normal"> | </span>
                                <span class='st_facebook' st_title='{$item.blog_title|escape}' st_url='{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}'></span><span class='st_twitter' st_title='{$item.blog_title|escape}' st_url='{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}'></span><span class='st_email' st_title='{$item.blog_title|escape}' st_url='{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}'></span><span class='st_sharethis'></span>
                            </div>
                            {/if}
                            {if jrUser_is_master()}
                            <div class="float-right">
                            	<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}">{jrCore_icon icon="gear" size="18"}</a>
                            </div>
                            {/if}
                            <div class="clear"></div>
                        </div>
                        <h3><a href="{$jamroom_url}/news_story/{$item.blog_title_url}">{$item.blog_title}</a></h3>
                        <div class="blog-text">
                            {if isset($item.blog_image_size) && $item.blog_image_size > 0}
                            {jrCore_module_function function="jrImage_display" module="jrBlog" type="blog_image" item_id=$item._item_id size="large" alt=$item.blog_title width="128" height="128" crop="auto" class="iloutline img_shadow" style="float:left;margin-right:8px;margin_bottom:8px;"}
                            {/if}
                            {$item.blog_text|jrCore_format_string:$item.profile_quota_id|jrBlog_readmore|jrEmbed_embed|nl2br}
                        </div>
                    </div>
{* share this http://sharethis.com *}
<script type="text/javascript">var switchTo5x = true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({ldelim}publisher:"388dfdea-9f20-4afd-ad57-a451dd00eac1"{rdelim});</script>
                    {/foreach}
  59