Forum Activity for @michael

michael
@michael
05/16/16 04:25:08PM
7,832 posts

New module with Aparna


Using Jamroom

post is unlocked again now.

As long as the prefix of the module is xxSomething then it will be available in the PACKAGE MODULE tool for export. If the module has fields made with the Form Designer, then check the checkbox that reads "export form fields" when you export it, then install it into wherever you like.

If the module is prefixed with anything other than xx then you will need a developers account here on jamroom to unlock the Package Module system.

If it is prefixed with something other than xx and you want to put it to your production server, copy the files to the production and go and get the SQL for the Form Designer fields from the database and run them on the production.

You will find the custom form fields in the jr_jrcore_form table and the 'module' column is the module they belong to.
michael
@michael
05/16/16 04:16:07PM
7,832 posts

New Stuff Forum


Suggestions

Whenever you put something in your timeline:
https://www.jamroom.net/n8flex/timeline

It turns up on everybodies dashboard page (screenshot). Could put a link there to your forum with a discussion page, or just use the timeline system to reply. It doesn't get much use here I think.
screenshot_developer_updates.png screenshot_developer_updates.png - 225KB
michael
@michael
05/13/16 09:47:01PM
7,832 posts

profile menu tab count


Design and Skin Customization

yeah, bit hard to understand, got it now though. What you're after is 'return_count'

{jrCore_list module=$module profile_id=$_post._profile_id return_count="true"}

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

If you put that code into your menu.tpl it will return the count of the items rather than the content of the items. Just make sure all the variables line up. If it doesnt work immediately, throw a {debug} in there and get the right variable names for the jrCore_list call.

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
michael
@michael
05/13/16 08:54:45PM
7,832 posts

profile menu tab count


Design and Skin Customization

?? you want to know how many tabs there are? what for? why not just count them.

--edit--
and where do you want to output it to, that makes a difference also. If its in the menu.tpl file where the tabs are displayed, you can just add a counter to the foreach loop.
updated by @michael: 05/13/16 08:55:43PM
michael
@michael
05/13/16 08:46:14PM
7,832 posts

New module with Aparna


Using Jamroom

good call. dont use jr as its for 'the jamroom network' modules.
michael
@michael
05/12/16 11:04:16PM
7,832 posts

Audio and Video modules disappeared on the profile after using the "Apply To All Quotas" checkbox


Using Jamroom

Its a good suggestion, I've thought the same thing in the past. Nice to have a way to keep a youtube channel synced with a profile.

Thanks.
michael
@michael
05/12/16 11:00:14PM
7,832 posts

Image Size


Design and Skin Customization

Technically its doable. The code is in for inspection and if there are no reasons not to it will be in an upcoming release.
michael
@michael
05/12/16 02:06:09AM
7,832 posts

Social Networks


Using Jamroom

You can use the form designer:

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

To add any fields you want to the profile update page, then you can display them in the users profile.

If you only want to show some for a specific language, then you get the variable for the language and use an IF conditional

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/development/3126/template-blocks

on the language variable. You can understand what variables are available to you in any template by dropping a {debug} into a location where you are thinking about showing whatever the user has input in the form.

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

It will probably look something like:
{if $_user.user_language == 'ja-JP'}
    {$_profile.profile_facebook_japanese}
{elseif $_user.user_language == 'fr-FR'}
    {$_profile.profile_facebook_french}
{else}
    {$_profile.profile_facebook_english}
{/if}
michael
@michael
05/12/16 01:59:31AM
7,832 posts

Audio and Video modules disappeared on the profile after using the "Apply To All Quotas" checkbox


Using Jamroom

Its normally 'video' and shows youtube, vimeo, video. You can change that though from the LANGUAGE tab of the module.
  398