Forum Activity for @douglas

douglas
@douglas
03/30/15 05:03:39AM
2,812 posts

Time line BG color


Using Jamroom

izhmel:
The gray around the player and the grays under the profile photo

http://www.dubmusic.com/junior-demus/audio/7616/the-shitsym-is-a-fraud


Unfortunately, you are not going to be able to change those colors via the ACP.

For the player, you'll want to modify your modules/jrAudio/css/jrAudio_player_dark.css and change the border color from this:

/*
 * jrAudio Dark Player CSS
 */

.jr_audio_dark_player div.jp-audio,
.jr_audio_dark_player div.jp-video {
    font-size:1.25em; /* 1.25em for testing in site pages */ /* No parent CSS that can effect the size in the demos ZIP */
    font-family:Verdana, Arial, sans-serif;
    line-height:1.6;
    color: #ccc;
    background-color:#111;
    position:relative;
    border:2px solid #666;
    margin:2px 1px 1px 1px;
    padding:1px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
}

And for the profile photo, you'll want to modify your skins/YOURSKIN/css/core_image.css and change the border color for the iloutline class.

/* @title Image Outline Link */
/* @help This is the small outline around small images that are linked */
.iloutline {
  border:1px solid #BBB;
  vertical-align:middle;
  margin:1px;
  padding:1px;
}

Hope this helps!
douglas
@douglas
03/29/15 09:35:27AM
2,812 posts

Can't embed youtube using text editor


Using Jamroom

I just checked the comments embed and I'm not seeing an issue there either.

You might check that you have the "Convert Embed Tags" check box checked in your ACP > Core > Quota Config for all of your quotas that your allowing the embed feature.
douglas
@douglas
03/29/15 04:35:25AM
2,812 posts

Can't embed youtube using text editor


Using Jamroom

I'm not seeing an issue on my dev site, are all of your modules up to date? Are you using the latest versions?
douglas
@douglas
03/28/15 06:14:19PM
2,812 posts

Page headers are not formed properly


Jamroom Developers

{assign var="selected" value="community"} {* set selected variable to community to hightlight menu link when a user is on the community page *}
{jrCore_lang skin=$_conf.jrCore_active_skin id="26" default="community" assign="page_title"} {* assigns the page title to the varable page_title *}
{jrCore_page_title title=$page_title} {* Sets the page title to the variable set from the previous line *}
douglas
@douglas
03/28/15 06:10:50PM
2,812 posts

Listing liked items via _user_id - jrLike


Design and Skin Customization

You might try using the profile_id instead...

{jrCore_list module="jrLike" search1="like_module = jrAudio" search2="like_action = like" template="wishlist_row.tpl" profile_id=$_user._profile_id}

I've not tested it so not sure if that will work.
douglas
@douglas
03/28/15 06:02:04PM
2,812 posts

Time line BG color


Using Jamroom

Are you talking about the thin dark gray borders that have rounded corners, or the light gray that is real thick?
douglas
@douglas
03/28/15 06:27:41AM
2,812 posts

Template Errors


Design and Skin Customization

I've got the Marketplace updated. Let me know if you see anymore issues.

Thanks!
douglas
@douglas
03/28/15 06:19:26AM
2,812 posts

Template Errors


Design and Skin Customization

Yeah, I'm seeing the same and the fix is this:

artsits_row.tpl, change this:

{if strlen($item.profile_bio) > 150}{$item.profile_bio|jrCore_format_string:$item.profile_quota_id|truncate:150:"...":false}{else}{$item.profile_bio|jrCore_format_string:$item.profile_quota_id}{/if}

to this:

{$item.profile_bio|truncate:150:"...":false|jrCore_format_string:$item.profile_quota_id:null:nl2br}

site_blogs_list.tpl, change this:

{$item.blog_text|truncate:300:"...":false|jrCore_format_string:$item.profile_quota_id|nl2br}

to this:

{$item.blog_text|truncate:300:"...":false|jrCore_format_string:$item.profile_quota_id:null:nl2br}

I'll get the Marketplace updated later today.

Thanks!
douglas
@douglas
03/28/15 06:02:38AM
2,812 posts

Template Errors


Design and Skin Customization

Most likely one of the blog entries, or artist entries, has HTML in it that is breaking the layout.

The first 4 pages from this link: https://www.r-m-n.com/artists/by_newest , the layout is messed up, but every page after that isn't. It's the same for this link: https://www.r-m-n.com/site_blogs , the first two pages are messed up, but after that they aren't.

Give this a try, in your artists_row.tpl, find this:

                                {if strlen($item.profile_bio) > 150}{$item.profile_bio|jrCore_format_string:$item.profile_quota_id|truncate:150:"...":false}{else}{$item.profile_bio|jrCore_format_string:$item.profile_quota_id}{/if}

and change it to this:
{$item.profile_bio|jrCore_format_string:$item.profile_quota_id:null:nl2br|truncate:150:"...":false}

And let me know if that fixes the artists page. If so, I'll get a fix in for those pages.

Thanks!
updated by @douglas: 11/03/15 01:26:42AM
douglas
@douglas
03/28/15 01:55:44AM
2,812 posts

Time line BG color


Using Jamroom

douglas:
Try adding a background color to the .item class in your core_list.css file.
  163