Forum Activity for @michael

michael
@michael
10/25/16 09:50:22PM
7,826 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,826 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,826 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,826 posts

User notifications tab, module options hidden when form loads



any javascript errors in the console?
michael
@michael
10/24/16 05:21:35PM
7,826 posts

form designer calander template help needed


Design and Skin Customization

The calendar is not {jrCore_list} the only options it has are:

* year=
* month=
* profile_id=

Docs: "Event Calendar"
https://www.jamroom.net/the-jamroom-network/documentation/modules/276/event-calendar

So if you need "all the events that happen on a saturday from profiles in quota_id 3" then you'll need to use {jrCore_list} to retrieve the info, then build a calendar layout in your skin to display that.

Its a good idea though, I'll add it to the suggestions for future features to the event calendar module.
michael
@michael
10/23/16 08:50:53PM
7,826 posts

Login restrictions


Jamroom Developers

You'd need a module to do that. Listen for the login event then run the checks.

Docs: "Jamroom Developers Guide » Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1011/events-and-listeners
michael
@michael
10/23/16 07:04:52PM
7,826 posts

Login restrictions


Jamroom Developers

1. yes by either the USERS ONLINE tab in the dashboard, or setting the site to maintenance mode.
2.?? tabs open for an account in their browser? no.
michael
@michael
10/23/16 07:03:19PM
7,826 posts

Users can't write blog posts?


Using Jamroom

The best indication of what the issue is is going to be the error message that the user sees. Get them to copy+paste that so you know too.

Otherwise the next step is to try to see that error message for yourself by reproducing their steps.

Once you know the general area via that error message there will be a clearer path to follow.
michael
@michael
10/23/16 05:31:37PM
7,826 posts

How to delete a large number of Profile/User AND their content?


Using Jamroom

Strumelia:....Michael, can you clarify for me?- are you guys saying that you need the USER browser to be able to delete both the User and its associated Profiles when one hits the Delete button on a user? ...the goal being?- not having to do the TWO steps for each member of: 1) identify the last login in the USER browser, and then 2) having to go pull them up in the PROFILE browser in order to delete them from there to catch both user and profile?

The way you have described @strumelia is the best way to do it currently available. I've added to my TODO list to look into a way to do it in bulk, but that way doesn't exist yet.

Elise:....I'm looking for a way to do this in Jamroom.....
A module is what you want.

First step in building it is defining what it.
* what will it do: delete inactive members user accounts and their profiles (and any forum posts made by them???? and any comments made by them?????)
- will it do it automatically or is it a tool that the admin views and runs????

My guess would be that what is wanted is something like the current DASHBOARD -> DATA BROWSER -> Profiles list with a "Last Login" column (like the -> Users has) and some checkboxes to check for a mass delete option.

Not sure how to handle the interface for deleting the associated comments and forum posts or whether they should go or stay.
michael
@michael
10/23/16 05:14:09PM
7,826 posts

where are my custom smileys stored?


Using Jamroom

You are getting Awesome at Jamroom. Well done.
  325