Forum Activity for @douglas

douglas
@douglas
10/06/16 08:15:28AM
2,807 posts

How to create a page where all member profiles can be seen and browsed?


Ning To Jamroom

The default template for the /profile URL is the modules/jrProfile/templates/index.tpl, inside that template is the search from and by default is setup to search the profile_name and profile_url fields.

{jrCore_include template="header.tpl"}

<div class="block">

    <div class="title">
        {jrSearch_module_form fields="profile_name,profile_url"}
        <h1>{jrCore_lang module="jrProfile" id="26" default="Profiles"}</h1>
    </div>

    <div class="block_content">

        {jrCore_list module="jrProfile" order_by="_item_id desc" pagebreak="10" page=$_post.p pager=true}

    </div>

</div>

{jrCore_include template="footer.tpl"}

You could create a template in your skin named jrProfile_index.tpl and it will override the modules template... then you could add more fields to search... ie.

        {jrSearch_module_form fields="profile_name,profile_url,profile_bio"}

https://www.jamroom.net/the-jamroom-network/documentation/modules/950/search

Hope this helps!
douglas
@douglas
10/06/16 08:06:10AM
2,807 posts

Jamroom 6 Follow Me skin Audio Player not showing on prifle


Design and Skin Customization

If you'll send us your site URL and the admin login we can check it out.

Send it to: support[at]jamroom[dot]net

Thanks!
douglas
@douglas
10/05/16 07:14:50AM
2,807 posts

Image gallery showing up on profile


Using Jamroom

Hello,

In your skins/YOURSKIN/profile_index.tpl find this code:

{* Latest Images section *}
        {if $profile_jrGallery_item_count > 0}
        <div class="row">
            <div class="col12 last">
                <div class="block">
                    {jrCore_include template="profile_index_image.tpl"}
                </div>
            </div>
        </div>
        {/if}

and change it to this:

{* Latest Images section *}
        {if  jrCore_module_is_active('jrGallery') && $profile_jrGallery_item_count > 0}
        <div class="row">
            <div class="col12 last">
                <div class="block">
                    {jrCore_include template="profile_index_image.tpl"}
                </div>
            </div>
        </div>
        {/if}

Hope this helps!
douglas
@douglas
10/02/16 08:16:04AM
2,807 posts

Forum Categories not showing in New Profile


Ning To Jamroom

Do you have "enable categories" checked in the "Settings" tab of the forum in question?
douglas
@douglas
10/01/16 07:30:30AM
2,807 posts

Dealing with Old Suspended Members


Ning To Jamroom

You can either delete the profiles or use the Ban module...
https://www.jamroom.net/the-jamroom-network/networkmarket/364/banned-items

Hope this helps!
douglas
@douglas
09/28/16 10:49:35AM
2,807 posts

JamRoom 6 Latest Activity 'Array' errors?


Using Jamroom

joanna:

@Douglas - we were using the code suggested by @Michael here:https://www.jamroom.net/the-jamroom-network/forum/new_posts/43430/data-browser-truncates-out-timeline-profile-id-s-that-i-need#p43510
It added a tiny trash bin to delete entries from the timeline.
If it takes the same steps to add that code to the template, I can do it.

Okay, I've got that added back in for you. Let us know if you see any issues.

Thanks!
douglas
@douglas
09/28/16 10:04:45AM
2,807 posts

JamRoom 6 Latest Activity 'Array' errors?


Using Jamroom

I should also mention that I have the original code from the custom template you were using Holly, so the code is not lost. I just need to know if you want me to create a new custom template for you.

Thanks!
douglas
@douglas
09/28/16 09:33:25AM
2,807 posts

JamRoom 6 Latest Activity 'Array' errors?


Using Jamroom

You both were using custom templates for the activity timeline.

Ceri, I deactivate your custom item_list.tpl in the ACP > Profiles > Timeline > Templates section. You may want to check out the new template and update your custom template to the latest code.

Holly, you were using a custom template in the Site Builder widget, I changed that back to the default template, if there was code in the custom template that you needed, let me know and I'll get that added to a new custom template for you.

Hope this helps!
douglas
@douglas
09/28/16 09:13:44AM
2,807 posts

User Birthday Module


Using Jamroom

Ceri:
I am using the Ningja skin and the birthdates were all imported from Ning. There is also a signup question for this . I have a b'day module already which was coded by Paul about 6 months ago and it works perfectly so I dont understand why the official module doesnt work at all. I guess I can continue to use what I already have but I wanted to compare my current setup witrh the official module and see which worked better/looked better etc.

Yeah, you have a different setup for the birthdays from Ning, you may want to keep that instead of using the new Birthday module.
  85