Forum Activity for @douglas

douglas
@douglas
03/28/15 06:02:04PM
2,807 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,807 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,807 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,807 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,807 posts

Time line BG color


Using Jamroom

douglas:
Try adding a background color to the .item class in your core_list.css file.
douglas
@douglas
03/27/15 05:16:51AM
2,807 posts

Cant update System Core


Using Jamroom

You'll want to send us your Jamroom URL, admin login and FTP login to support[at]jamroom[dot]net so we can check it out.
douglas
@douglas
03/26/15 11:49:13AM
2,807 posts

What does jrProfile_is_profile_owner() do?


Jamroom Developers

That is being used for the main menu, to highlight a link if it is the active page. There maybe another reason for it, but I know that is one of them.
douglas
@douglas
03/26/15 11:32:45AM
2,807 posts

Featured discussions


Ning To Jamroom

It checks to see if there is an _item_id IN the options given. ie. 4410,4411,4412 etc.
douglas
@douglas
03/26/15 10:33:16AM
2,807 posts

Featured discussions


Ning To Jamroom

I think it needs to be _item_id not discussion_id... try this:

<h1>Featured Discussions</h1><br>
        {jrCore_list module="jrForum" search1="_item_id IN 4410,etc" limit=4orwhatever}

I've not tested this.
douglas
@douglas
03/26/15 10:24:45AM
2,807 posts

contact us page


Using Jamroom

If you have the jrCustomForm installed and activated you'll find it at yoursite.com/form/contact_us.

Which skin are you using?

Most of our skins have a check for the module and will show the link in the footer if it is active.
  163