Forum Activity for @douglas

douglas
@douglas
10/09/16 07:04:08AM
2,806 posts

Blog Post Order as shown in a Blog Category


Ning To Jamroom

Can you post a link to the category page?
douglas
@douglas
10/09/16 06:56:31AM
2,806 posts

Site Builder Widget behaviour - Forums, Photos and Timeline


Installation and Configuration

Hello,

1. You had some settings set for this that would cause it to not work, I've changed them for you so you may want to check it out. Mainly, you don't want to use a pagebreak if you are setting a limit, pagebreak and limit do not work together. There is an issue though with the default template for listing forum topics and we'll take a look at it.

2. Same as #1, you had a limit and pagebreak set, you also were not using an order_by parameter which is what you use to order your lists.

https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list

3. You would use the same setup as the forums widget only select the "Timeline" module instead of the "Forum" module.

https://www.jamroom.net/the-jamroom-network/documentation/site-builder
https://www.jamroom.net/the-jamroom-network/documentation/site-builder/2647/adding-a-new-widget

Hope this helps!
douglas
@douglas
10/09/16 06:43:58AM
2,806 posts

Changing links for different languages


Design and Skin Customization

If your wanting to change the link according to the users language setting who is viewing the page... you could try something like this...

{if isset($_user.user_language) && $_user.user_language == 'de-DE'}
<a href="#">German Link Here</a>
{else}
<a href="#">Default Language Link Here</a>
{/if}

Hope this helps!
douglas
@douglas
10/08/16 08:50:10AM
2,806 posts

Can't get comments to work....


Installation and Configuration

I've found the issue and will open a ticket on it.

For now, do not enable the editor for comments, that is causing the post button to not work in the Mogul skin.

I've disabled it for you and your users can comment now on gallery images etc..

Hope this helps!
updated by @douglas: 10/08/16 08:50:57AM
douglas
@douglas
10/08/16 08:44:37AM
2,806 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,806 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,806 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,806 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,806 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,806 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!
  84