Forum Activity for @douglas

douglas
@douglas
10/08/16 08:44:37AM
2,812 posts

Can't get comments to work....


Installation and Configuration

Can you let me know the username that is having the issue?
douglas
@douglas
10/08/16 08:30:45AM
2,812 posts

Pinterest Index.html editing


Installation and Configuration

You'll want to add that to your meta.tpl, that is where the < head > tags are.

If your code doesn't work the first time, try adding literal tags around it, ie.

{literal}
Your code here...
{/literal}

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

Can't get comments to work....


Installation and Configuration

It doesn't always have to do with the skin, but its best if we try to replicate using as close to the same setup your using just in case it does have to do with the skin.

In this instance, I'm not able to replicate your issue, I can comment on galleries and gallery images without issues, so it is probably how you have your settings in the ACP.

Can you send us your site URL and admin login so we can check it out?

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

Thanks!
douglas
@douglas
10/08/16 06:39:05AM
2,812 posts

Can't get comments to work....


Installation and Configuration

Which skin are you using?

I'll see if I can replicate the issue.
douglas
@douglas
10/08/16 04:52:41AM
2,812 posts

Jamroom 6 Follow Me skin Audio Player not showing on prifle


Design and Skin Customization

Hello,

This was actually an issue with the TinyMCE editor being activated for the timeline, mentions specifically, I believe it was trying to add some js that was causing the page to break. It has been fixed on your site and for the next release.

Hope this helps!
douglas
@douglas
10/06/16 08:15:28AM
2,812 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,812 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,812 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,812 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?
  85