Forum Activity for @douglas

douglas
@douglas
03/13/15 06:44:26AM
2,812 posts

Log out best practice?


Using Jamroom

researchcooperative:
Thanks.

I can see my website top page, and the options to login or ceate account.

When I try to create a testuser account with a different email address and password, the screen makes no response, just the same as the login screen.

Maybe that helps to identify the problem. My browser is active, as I am using the same browser to send this message.

If you can approve my account by going to the dashboard > pending users, I can check the login.

You may be behind a firewall or something at your home computer.
douglas
@douglas
03/13/15 06:36:28AM
2,812 posts

Log out best practice?


Using Jamroom

I just signed up on your site, still waiting on a verification email, but I didn't not see any issues with the registration.
douglas
@douglas
03/13/15 05:51:39AM
2,812 posts

(next page ) button


Using Jamroom

The next/prev button images are located in your modules/jrCore/img/icons_white or icons_black folder.
douglas
@douglas
03/12/15 01:56:20PM
2,812 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

soaringeagle:
some of the text was wrapped round the image instead of below
so maybe 200 is a good compromise

If you have wrapped text, you might go a little lower, say 128px
douglas
@douglas
03/12/15 01:53:40PM
2,812 posts

JrproJam dark5


Design and Skin Customization

Glad to hear it. :)
douglas
@douglas
03/12/15 11:42:11AM
2,812 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

You could probably go as wide as 290px and it should be okay on smart phones.
douglas
@douglas
03/12/15 10:43:13AM
2,812 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

soaringeagle:
mobile cores the same as override mobile i assumed right

Yes, that is correct.
douglas
@douglas
03/11/15 06:07:24AM
2,812 posts

JrproJam dark5


Design and Skin Customization

First you'll want to modify your skins/YOURSKIN/index.tpl and find this:

{if jrCore_module_is_active('jrComment')}
{jrCore_list module="jrAudio" order_by="audio_comment_count NUMERICAL_DESC" limit="5" template="reviews_row.tpl"}

then change it to this:

{if jrCore_module_is_active('jrBlog')}
{jrCore_list module="jrBlog" order_by="blog_comment_count desc" limit="5" search1="blog_category = song_review" template="reviews_row.tpl"}

Then modify your reviews.tpl and replace all the code in the template with this:

{if isset($_post.option) && $_post.option == 'videos'}
    {* assign var="com_mod" value="jrVideo" *}
    {assign var="search_tag" value="video"}
{elseif isset($_post.option) && $_post.option == 'songs'}
    {* assign var="com_mod" value="jrAudio" *}
    {assign var="search_tag" value="song"}
{/if}
{jrCore_list module="jrBlog" order_by="blog_comment_count desc" limit="5" search1="blog_category = `$search_tag`_review" template="reviews_row.tpl"}

Then modify your reviews_row.tpl and replace all the code in the template with this:

{if isset($_items)}
    {jrCore_module_url module="jrBlog" assign="burl"}
    {foreach from=$_items item="item"}
        <div class="body_5 page" style="padding:5px; margin-bottom:5px; margin-right:10px;">
            <h3 style="font-weight:normal;">
                <a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$item._item_id}/{$item.blog_title_url}">{$item.blog_title|truncate:35:"...":false}</a>
            </h3>
            <div style="font-size:12px;">{$item._created|jrCore_date_format}</div>
            <div style="font-size:11px;"><span class="highlight-txt"><i>By:</i></span>&nbsp;<a href="{$item.profile_url}"><span class="capital">{$item.profile_name}</span></a></div>
            {if jrCore_module_is_active('jrComment')}
                <br>
                <div class="float-right" style="padding-right:5px;">
                    <a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$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>
                </div>
                <div class="clear"></div>
            {/if}
        </div>
    {/foreach}
{else}
    <div class="body_5 page" style="padding:5px; margin-bottom:5px; margin-right:10px;">
        {jrCore_lang skin=$_conf.jrCore_active_skin id="166" default="Sorry! There are no reviews to list."}
    </div>
{/if}

and finally, to keep these blogs from showing in the user blog section, modify the site_blogs.tpl and find this:

{jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" pagebreak="9" page=$_post.p}

and replace it with this:

{jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive,song_review,video_review" pagebreak="9" page=$_post.p}

be sure to clear your caches after making the changes.

To create a song or video review, just create a blog and make the category be either song_review or video_review.

Hope this helps!
douglas
@douglas
03/10/15 02:21:55PM
2,812 posts

'Allowed Domains' needed for 'Share This' Facebook embed


Using Jamroom

MySong:
Just tried again when using only facebook.com and fbsbx.com
player shows in Facebook but track does not play.

Are you embedding from a secure site, does your site use https: or http:?

Facebook requires you to have a secure site, https: in order to embed players on Facebook.
  167