Forum Activity for @michael

michael
@michael
10/27/16 09:38:41PM
7,832 posts

Is there an easy way to discover who owns a secondary profile?


Using Jamroom

Something like this:
{capture assign="profile_tpl"}
{literal}
    {if isset($_items)}
    {foreach $_items  as $item}
    <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="small" crop="auto" alt=$item.profile_name title=$item.profile_name width=false height=false}</a><br>
    <a href="{$jamroom_url}/{$item.profile_url}">{$item.profile_name}</a><br>
    {/foreach}
    {/if}
{/literal}
{/capture}
{jrCore_list module="jrProfile" search="_user_id = `$_user_id`" template=$profile_tpl}
put in the profile_header.tpl will show the profile images with their names of all profiles linked to the currently viewed profile.
michael
@michael
10/27/16 08:53:26PM
7,832 posts

What links can logged in users and passing visitors see and use? (SSL URL or non-SSL) x (local or non local)


Using Jamroom

XP is not supported by microsoft anymore. If the company that built the thing isn't supporting it you shouldn't either.
michael
@michael
10/27/16 08:51:16PM
7,832 posts

Is there an easy way to discover who owns a secondary profile?


Using Jamroom

You can put anything you like onto profile pages, perhaps the profile_header.tpl file. It will contain the $_profile variable with everything related to that profile in it.

'Profiles' are associated with 'User' accounts not other profiles, so what you're going to want to do is get the user_id of the owner of the profile, then use that in a {jrCore_list} call as a search parameter

something like:
{jrCore_list module="jrProfile" search="_user_id = $_user_id"}
(you'll need to use the actual variable that contains the user_id $_user_id is just one put there to illustrate how to do it. use {debug} to find out what variables you have available.)

Then you can format it however you like.

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

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list
michael
@michael
10/26/16 04:45:30PM
7,832 posts

Share This Integration with Follow Me Share Icon


Design and Skin Customization

The code to simply add the share this buttons is here:

Docs: "ShareThis"
https://www.jamroom.net/the-jamroom-network/documentation/modules/2598/sharethis

its:
{jrShareThis module="?????" item_id="??????"}

The modal window layout is controlled by:
/modules/jrAction/templates/item_share_modal.tpl

(think you already know this but) how to override that template can be found here:

Docs: "Altering a Modules Template"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1051/altering-a-modules-template
michael
@michael
10/26/16 04:39:56PM
7,832 posts

Can I tag discussions in the forum? (Module: Item tag)


Ning To Jamroom

That probably means your not in an account that is allowed to tag stuff, check the QUOTA CONFIG permissions.
michael
@michael
10/25/16 09:50:22PM
7,832 posts

child birth event errors


Genosis

Cloud Media:
The genosis skin shut down our site.
The imixfm.com page isn’t working
imixfm.com is currently unable to handle this request.

ask new questions in their own thread, this is unrelated to "Child Birth event error."
michael
@michael
10/25/16 06:56:41PM
7,832 posts

Putting videos and members into grid (site builder - combined video)


Ning To Jamroom

What do you have selected in the TEMPLATE field of the widget you are using?

--edit--
Try this in the TEMPLATE section after you select CUSTOM for the "Item List (combined)" with YOUTUBE, VIDEO, VIMEO selected as options.

{if isset($_items)}
    {jrCore_module_url module="jrVideo" assign="murl"}
    {jrCore_module_url module="jrVimeo" assign="vmurl"}
    {jrCore_module_url module="jrYouTube" assign="ymurl"}
    <div class="container">
        {foreach $_items as $item}

            {if $item@first || ($item@iteration % 3) == 1}
                <div class="row" style="margin: 20px 0">
            {/if}
            <div class="col4">
                {if $item.seamless_module_name == "jrVideo"}
                    <div class="container">
                        <div class="row">
                            <div class="col4">
                                <div class="block_image">
                                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.video_title|jrCore_url_string}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="large" crop="auto" class="iloutline img_scale" alt=$item.video_title width=false height=false}</a>
                                </div>
                            </div>
                            <div class="col8">
                                <div class="p5">
                                    <h3><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.video_title|jrCore_url_string}">{$item.video_title}</a></h3><br>
                                    <span class="info"><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_name}</a></span>
                                    <br>
                                    <small>{$item._created|jrCore_format_time:false:"relative"} - Comments: {$item.video_comment_count|default:0}</small>
                                    {jrCore_module_function function="jrRating_form" type="star" module="jrVideo" index="1" item_id=$item._item_id current=$item.video_rating_1_average_count|default:0 votes=$item.video_rating_1_count|default:0}
                                </div>
                            </div>
                        </div>
                    </div>
                {elseif $item.seamless_module_name == "jrVimeo"}
                    <div class="container">
                        <div class="row">
                            <div class="col4">
                                <div class="block_image">
                                    <a href="{$jamroom_url}/{$item.profile_url}/{$vmurl}/{$item._item_id}/{$item.vimeo_title_url}"><img src="{$item.vimeo_artwork_url}" class="iloutline img_scale"></a>
                                </div>
                            </div>
                            <div class="col6">
                                <div class="p5">
                                    <h3><a href="{$jamroom_url}/{$item.profile_url}/{$vmurl}/{$item._item_id}/{$item.vimeo_title_url}">{$item.vimeo_title}</a></h3><br>
                                    <span class="info"><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_name}</a><br></span>
                                    <small>{$item._created|jrCore_format_time:false:"relative"} - Comments: {$item.vimeo_comment_count|default:0}</small>
                                </div>
                            </div>
                        </div>
                    </div>
                {elseif $item.seamless_module_name == "jrYouTube"}
                    <div class="container">
                        <div class="row">
                            <div class="col4">
                                <div class="block_image">
                                    <a href="{$jamroom_url}/{$item.profile_url}/{$ymurl}/{$item._item_id}/{$item.youtube_title_url}"><img src="{$item.youtube_artwork_url}" alt="{$item.youtube_title|jrCore_entity_string}" class="iloutline img_scale"></a>
                                </div>
                            </div>
                            <div class="col8">
                                <div class="p5">
                                    <h3><a href="{$jamroom_url}/{$item.profile_url}/{$ymurl}/{$item._item_id}/{$item.youtube_title_url}">{$item.youtube_title}</a></h3><br>
                                    <span class="info"><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_name}</a><br></span>
                                    <small>{$item._created|jrCore_format_time:false:"relative"} - Comments: {$item.youtube_comment_count|default:0}</small>
                                </div>
                            </div>
                        </div>
                    </div>
                {/if}
            </div>
            {if $item@last || ($item@iteration % 3) == 0}
                </div>
            {/if}

        {/foreach}
    </div>
{/if}

That will put 3 per row. adjust the ($item@iteration % 3) parts to a different number if you want a different amount.
updated by @michael: 10/25/16 07:18:23PM
michael
@michael
10/24/16 09:01:38PM
7,832 posts

Follow me skin how to change Index text


Design and Skin Customization

À la carte is on line 113 of index_login.tpl with the text beneath that.
michael
@michael
10/24/16 07:27:59PM
7,832 posts

User notifications tab, module options hidden when form loads



any javascript errors in the console?
  325