Forum Activity for @michael

michael
@michael
10/03/16 02:28:57AM
7,832 posts

Moving a Forum Category to another Profile


Ning To Jamroom

Bit tricky that one. There is the the 'cat_profile_id' in the jr_jrforum_category table, then in the datastore there is a forum_profile_id key on each datastore item.

The difference between a datastore and a normal database table is the way its set up. The forum datastore table where the info is stored is 'jr_jrforum_item_key'

Probably best to add it as a suggestion and we'll probably get round to building it. If its an urgent thing, you can sponsor a module or features development to bump it up TODO list.
michael
@michael
10/02/16 07:38:10PM
7,832 posts

user/signup challenges


Using Jamroom

Holly: Here's a screenshot of what happened after I deleted the 'meant to be for master admin eyes only' questions from the user/signup form:

The screenshot is not a Form. The Form Designer settings are just for the Form fields. What you have in that screenshot is a output in a template.

In a template if you only want those output sections to be SEEN by an admin user, use
{if jrUser_is_admin()}
    // put whatever you want to show just to the admin user in HERE
{/if}

So you'll need to figure out which template is creating that output ( it looks like its probably profile_sidebar.tpl ) and adjust it there.
updated by @michael: 10/02/16 07:39:05PM
michael
@michael
10/02/16 07:15:40PM
7,832 posts

RumbleTalk Integration


Using Jamroom

This page outlines how to integrate RumbleTalk with an existing user base:

RumbleTalk: "Connect your user base using the RumbleTalk JS SDK"
https://www.rumbletalk.com/support/API_Auto_Login/

Quote: ..... With the RumbleTalk JS SDK, your users will not need to login to the chat.......


STEP 3: "What to do on your end?
Add the following code to your website.
This code should be executed when a user has been authenticated. "


Based on that page this is the code that would go in the footer.tpl file of your skin
{if jrUser_is_logged_in()}
<script>
window.RumbleTalkAsyncCallback = function (RT) {
    RT.init({ 
            hash: 'YOUR_CHAT_HASH'
            });
    RT.login({
        username: '{$_user.user_name}',
        password: 'PASSWORD'
    });
};
</script>
<script src="//d1pfint8izqszg.cloudfront.net/api/v0.29/sdk.js"></script>
{/if}

The rest of the integration would be the setup. You'll have to ask them about any further questions related to getting their system operational.
updated by @michael: 10/02/16 07:18:56PM
michael
@michael
10/01/16 09:55:47PM
7,832 posts

Can we search threads inside individual groups (like searching threads inside individual forums)?


Ning To Jamroom

A.) Is this a question or a statement of contentedness? Think its the second, great. :)

B.) ...
(Question's getting long, I'll answer the title.)

Q: "Can we search threads inside individual groups (like searching threads inside individual forums)?"
A: Yes, you can use the {jrSearch_module_form} template function to search specific fields, something like:
{jrSearch_module_form fields="discuss_title,discuss_description"}
Perhaps in the
/modules/jrGroup/templates/item_details.tpl
template.

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

Docs: "Alter a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1051/altering-a-modules-template
michael
@michael
10/01/16 09:22:12PM
7,832 posts

Is my license from 2003 worth anything?


Using Jamroom

Not unless someone wants to run a JR3 site. Its not supported anymore and the new core is open source.

--edit--
The best deal now is to get Jamroom Hosting then you get use of all of the premium modules we make for free on as many domains as you like.
updated by @michael: 10/01/16 09:24:03PM
michael
@michael
10/01/16 09:21:19PM
7,832 posts

is there no rotator in new sb?


Using Jamroom

The UpImg module is the only one with a rotator widget in it. If you use the "Uploaded Images" widget to upload some images, then check the checkbox to the right of those images for the widget, they will show in a rotator.

For more complicated rotators, you'd need to use the Template Code widget.
michael
@michael
09/30/16 11:36:06PM
7,832 posts

Order Groups by Member Count


Ning To Jamroom

This is the query that is required:
SELECT member_group_id,  COUNT(member_id) as member_count FROM `jr_jrgroup_member` GROUP BY member_group_id order by  member_count desc

Who is joined to a group is not stored with information about the group. Can't see a simple way to do this, only a programmatic way.
michael
@michael
09/30/16 01:51:52AM
7,832 posts

Jamroom 6 Beta Kick Off


Announcements

Want to know whats new and cool in the Follow Me skin, check out its docs here:

Docs: "Skin: Follow Me"
https://www.jamroom.net/the-jamroom-network/documentation/skins/4419/follow-me
michael
@michael
09/29/16 11:06:39PM
7,832 posts

user/signup challenges


Using Jamroom

your-site.com/user/form_designer/m=jrUser/v=signup
This is the Form that is shown on the signup page. ( site.com/user/signup)

your-site.com/user/form_designer/m=jrUser/v=account
This is the Form that is shown on the user account settings page. ( site.com/user/account/profile_id=15/user_id=9 )

You're wanting:
Q: some questions to be answerable by the user signing up on the signup page.
A: add those fields to the Form that is shown on the signup page

Then you're wanting:
Q: To see the answers to those question, but just the admin only
A: Add those same Form Fields to the Form that is shown on the user account settings page and make them 'admin Only'

Its difficult to start with, keep going, it will get simpler.
updated by @michael: 09/29/16 11:06:52PM
michael
@michael
09/29/16 10:46:44PM
7,832 posts

Delete buttons for imported forum categories are not active


Ning To Jamroom

Use the 'transfer' button to transfer out the threads in the category you want to delete. Once its empty of threads the delete button should work.
  337