Forum Activity for @dazed

Dazed
@dazed
04/12/14 05:04:01PM
1,022 posts

URL Went Wonky After Update


Using Jamroom

thanks Brian. I appreciate it.
Dazed
@dazed
04/12/14 05:00:30PM
1,022 posts

URL Went Wonky After Update


Using Jamroom

just ran both again. Same thing. Suggestions?
Dazed
@dazed
04/12/14 04:56:50PM
1,022 posts

URL Went Wonky After Update


Using Jamroom

yes that is the row template. you can also see it on my site Brian.
updated by @dazed: 04/12/14 04:57:51PM
Dazed
@dazed
04/12/14 04:52:57PM
1,022 posts

URL Went Wonky After Update


Using Jamroom

I just updated everything so it looked like almost every module. This is a call on my side_home.tpl that displays the recent forum posts. After the update the profile_name dropped as did the forum category. Below was the call to the row template.

{jrCore_list module="jrForum" search1="forum_title like %" search2="forum_profile_id = 174326" 
 order_by="forum_updated desc" template="side_forum_row.tpl" limit=5}

updated by @dazed: 04/12/14 04:53:46PM
Dazed
@dazed
04/12/14 03:48:09PM
1,022 posts

URL Went Wonky After Update


Using Jamroom

I updated to latest and this url went a bit off. Below is the code and the row template. Any ideas?

invalid url: sitename//forum/550/new-one-with-yvonne-j-yours-truly
correct url: sitename/profile_name/forum/center-stage/550/new-one-with-yvonne-j-yours-truly


row template

{jrCore_module_url module="jrForum" assign="murl"}
<div class="container">
    {foreach from=$_items item="item"}
    <div style="overflow:hidden;margin-bottom:12px">
        <div style="float:left;padding-right:12px;">
         {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="xsmall" alt=$item.user_name class="action_item_user_img iloutline"}
        </div>
        <div>
         <h3><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.forum_title_url}">{$item.forum_title}</a></h3>
         <br><span class="normal"><small>{$item._created|jrCore_format_time}, by {$item.user_name}</small></span>
        </div>
    </div>
    {/foreach}
</div>

updated by @dazed: 05/15/14 03:30:50AM
Dazed
@dazed
03/31/14 05:53:05AM
1,022 posts

YouTube Horizontal Row


Using Jamroom

Perfect. Thanks all :)
Dazed
@dazed
03/30/14 03:02:20PM
1,022 posts

YouTube Horizontal Row


Using Jamroom

Since I only use youtube I needed to reset the index newest videos to be youtube videos only. I was able to get the call set and the videos are displayed, however they are showing 3 vertical videos vs the 3 horizontal videos. Below is the template I am using. I did not think I would need to make this a table to display since I think JR has this built into the existing css. Ideas?


{if isset($_items)}
{jrCore_module_url module="jrYouTube" assign="murl"}
{foreach from=$_items item="item"}
    <div class="item">

        <div class="container">
            <div class="row">
                <div class="col2">
                    <div class="block_image">
                        <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.youtube_title_url}"><img src="{$item.youtube_artwork_url}" alt="{$item.youtube_title|jrCore_entity_string}" class="iloutline img_scale"></a>
                    <br>
                        <h3><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.youtube_title_url}">{$item.youtube_title}</a></h3><br>
                    </div>
                </div>

                <div class="col2 last">
                    <div class="block_config">
                        {jrCore_item_list_buttons module="jrYouTube" item=$item}
                    </div>
                    <div class="clear"></div>
                </div>
            </div>
        </div>

    </div>
{/foreach}
{/if}

updated by @dazed: 04/30/14 08:52:28AM
Dazed
@dazed
03/30/14 11:40:04AM
1,022 posts

ProJam Index Page - Reviews & Articles Tab


Using Jamroom

ok I figured it out. I had to change it to product_comment_count.

Thanks all!
Dazed
@dazed
03/30/14 11:34:57AM
1,022 posts

ProJam Index Page - Reviews & Articles Tab


Using Jamroom

This is what I have there now Douglas -
{jrCore_list module="jrStore" order_by="item.product_comment_count NUMERICAL_DESC" limit="5" template="reviews_row.tpl" }
  76