Forum Activity for @michael

michael
@michael
02/24/15 11:39:06AM
7,832 posts

Need A Little Help With Video Title In A Template


Using Jamroom

First guess is the syntax error comes from that multi-line {jrCore_module_function ..... part as there are line breaks in between. shrink that down so the line breaks are gone.

<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="medium" crop="auto" class="iloutline img_scale" alt=$item.video_title width=true height=false}
michael
@michael
02/24/15 11:34:24AM
7,832 posts

Built in shopping cart for Jamroom?


Suggestions

Right. FoxyCart can handle Paypal as well, so if you need to use the Merchandise store AND paypal, use paypal via foxycart.
michael
@michael
02/24/15 11:32:30AM
7,832 posts

Can I Add Image Size To Embed Code?


Using Jamroom

That code above is what you want. Put that anywhere, but change the size="large" to size="small" (or whatever other size you like)

Valid sizes are:
24,xxsmall,40,xsmall,56,72,small,96,icon96,128,icon,196,medium,256,large,320,larger,384,xlarge,512,xxlarge,800,xxxlarge,1280

There is nothing built in to the default template to change the size. Another way to do it would be to change the default template to

size=$my_image_size

and use the code paul gave above to get $_params.my_image_size but then you would need to check that that comes out as well, so its a bit more complicated to do it for the default templates.

Need to add this to the default template up top, to make sure its there.
{if isset($_params.my_image_size)}
{$my_image_size = $_params.my_image_size}
{else}
{$my_image_size = "large"}
{/if}

updated by @michael: 02/24/15 11:33:29AM
michael
@michael
02/23/15 02:23:53PM
7,832 posts

Question Regarding Seamless Module Function


Using Jamroom

Its called 'Combined Videos' the server directory structure should look like:
/modules/xxCombinedVideos/index.php
/modules/xxCombinedVideos/include.php
.....

You can turn it on at
ACP -> MEDIA -> COMBINED VIDEOS -> INFO

If its not there, run the integrity check or clear the caches.

Its not going to do what you've outlined above. We're talking about that internally now and will get back to you.
michael
@michael
02/23/15 12:52:38PM
7,832 posts

Login and Registration like Facebook


Design and Skin Customization

You can use that code that Doug gave to put the Signup box in the header, then you will have both the signup and registration on the registration page.

your-site.com/user/signup

--edit---
You can put this code in your index.tpl file to redirect to the signup / login page:

{if !jrUser_is_logged_in()}
{jrCore_location("$jamroom_url/user/signup")}
{/if}

Haven't tested that but should work.
updated by @michael: 02/23/15 01:01:04PM
michael
@michael
02/23/15 12:40:31PM
7,832 posts

Can I Add Image Size To Embed Code?


Using Jamroom

What you have there in your {jrCore_list call is a request to get some stuff. in your call there is no template="some_template.tpl" parameter, so by leaving that out you are saying "Just format it in the default way".

If you want to format it differently, use the template="" parameter. Then in that template you can format it any way you like.

The normal way would be to copy the code from the module and use that as the template.

Eg for your code above you have
{jrCore_list module="jrProfile" order_by="_item_id desc" search1="profile_active = 1" pagebreak="36" page=$_post.p pager=true}

To use the jrProfile's item_list.tpl in there, but tweak it a bit, you can either put that in a template file in your skin and give it a name, or you can use the smarty 'capture' feature to avoid needing to have another .tpl file in your skin. Either works.

Using a capture, it would look like this:
{capture name="row_template" assign="template"}
{literal}
{if isset($_items)}

    {foreach from=$_items item="item"}
    <div class="item">

        <div class="container">
            <div class="row">
                <div class="col2">
                    <div class="block_image">
                        <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="iloutline img_scale" alt=$item.profile_name title=$item.profile_name width=false height=false}</a>
                    </div>
                </div>
                <div class="col10 last">
                    <div class="p10">
                        <h1><a href="{$jamroom_url}/{$item.profile_url}">{$item.profile_name}</a></h1>
                        {if !empty($item.profile_bio)}
                        <br><span class="normal">{$item.profile_bio|jrCore_format_string:$item.profile_quota_id|truncate:250:"..."}</span>
                        {/if}
                    </div>
                </div>
            </div>
        </div>

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

{/literal}
{/capture}

{jrCore_list module="jrProfile" order_by="_item_id desc" search1="profile_active = 1" pagebreak="36" page=$_post.p pager=true template=$template}

That part in the capture was taken from the latest version of:
/modules/jrProfile/templates/item_list.tpl

Adjust it however you like to only alter how that particular jrCore_list is formatted.
michael
@michael
02/22/15 07:28:22PM
7,832 posts

Multiple forums


Ning To Jamroom

Multiple forums in a single profile has never been done (as far as I know). You can set categories for the forum so have those as forum categories. Like the ones Jamroom.net uses here.

https://www.jamroom.net/the-jamroom-network/forum
Quote: Announcements
» Announcements for the Jamroom community

Using Jamroom
» Questions about Jamroom functionality and configuration

Installation and Configuration
» Questions about server configuration and installing Jamroom

Design and Skin Customization
» Questions about customizing Jamroom skin and module templates

Jamroom Developers
» Questions about developing Jamroom modules and skins

Jamroom Hosting
» Questions and Discussions about Jamroom Hosting

Ning To Jamroom
» Questions and Support for the Ning To Jamroom Project
........

Or you could create 2 profiles and have a forum each.

For the matter of permissions. These are setup in the QUOTA CONFIG tab of the forum module:
ACP -> PROFILE -> PROFILE FORUM -> QUOTA CONFIG.

Its the "Can Post to Forums" setting that determines if users can read and write, or just read.
michael
@michael
02/22/15 07:21:05PM
7,832 posts

Question Regarding Seamless Module Function


Using Jamroom

You're on Jamroom Hosting, so all modules and skins are free, you don't need to purchase anything, just activate it. :)

* download the .zip file.
* unzip it.
* upload it to /modules/(put it here) Its called: xxCombinedVideos so it will end up at:
/modules/xxCombinedVideos

It will appear in the ACP. Turn it on. Yes you will need to have jrSeamless for it to work. Its not really a finished module, more an extra page on the profile tab to be made into a module.

It looks like this (screenshot)
- 107KB

updated by @michael: 02/22/15 07:21:28PM
michael
@michael
02/22/15 06:31:28PM
7,832 posts

Question Regarding Seamless Module Function


Using Jamroom

Strumelia:...is like having a store selling milk next door to the egg store, next door to the butter store....

Nice analogy. :) I see it as 'milk is milk' so should be stored in the 'milk' box (and same for the other two). Storing them all in the 'edible stuff' box is of course an option.

(attached is a super quick module that adds a profile tab ALL VIDEOS and uses seamless to get them all.)
xxCombinedVideos.zip - 13KB

updated by @michael: 02/22/15 06:32:01PM
michael
@michael
02/22/15 04:30:11PM
7,832 posts

Add photos to a page using site builder


Using Jamroom

Fantastic. :)

and this thread will hopefully help anyone coming later with the same issue. All good :)
  580