Forum Activity for @the-patria-company

PatriaCo
@the-patria-company
05/18/16 04:57:40AM
349 posts

Show Specific Uploaded Video on Front Page


Design and Skin Customization

Hey Everyone :)

#1. I am not using sitebuilder.

I am looking for the code I need to use to add a specific video that I uploaded on to our site index page.
updated by @the-patria-company: 08/22/16 07:12:25PM
PatriaCo
@the-patria-company
05/13/16 05:43:47AM
349 posts

Image Size


Design and Skin Customization

AWESOME!! I vote YES!

:)
PatriaCo
@the-patria-company
05/12/16 08:31:30PM
349 posts

Image Size


Design and Skin Customization

I am working on some full screen image options and was wondering if there is an image size option above 1280?

I keep getting this error message:

CRI: invalid image size - must be one of: 24,xxsmall,40,xsmall,56,72,small,96,icon96,128,icon,196,medium,256,large,320,larger,384,xlarge,512,xxlarge,800,xxxlarge,1280

Is it possible to use (or add) a designation like "original" or "1920" for 1080p photos?

Thanks :)
updated by @the-patria-company: 08/14/16 09:02:06AM
PatriaCo
@the-patria-company
04/13/16 05:08:05PM
349 posts

Custom User Group


Design and Skin Customization

Is there a way to create a Custom User Group?

I am looking to create a Moderator Admin that has access to the dashboard for content approval, but is not allowed to change profile info.

Thanks :)
updated by @the-patria-company: 07/14/16 12:58:40PM
PatriaCo
@the-patria-company
04/04/16 12:45:59PM
349 posts

Followers Records


Jamroom Developers

Hey Guys,

Quick question, in which table and row would I find follower info?

We are working with CometChat to make a query that will only show people that are following a profile, in that profile's "Chat Now" window.

I see this in the data store

follow_active: 0 or 1
follow_profile_id: xxx

How are we able to discern who is following whom?

Thanks :)

- Joshua
updated by @the-patria-company: 07/15/16 02:52:42PM
PatriaCo
@the-patria-company
03/04/16 09:44:54AM
349 posts

Group Search for Profile Display


Design and Skin Customization

Thx :) It may need some tweaks, so if you have any suggestions, they are more than welcome.
PatriaCo
@the-patria-company
03/04/16 08:20:27AM
349 posts

Photo Album List Display in Side Bar


Design and Skin Customization

@michael, you are the coding BOSS!!!

Here is my new side bar photo album display (elastic skin), so far:

        {if !jrCore_is_mobile_device() && jrCore_module_is_active('jrPhotoAlbum')}

            {capture assign="my_photoalbums_tpl"}
            {literal}
            {jrCore_module_url module="jrPhotoAlbum" assign="murl"}
            {jrCore_module_url module="jrGallery" assign="gurl"}
            {if isset($_items)}
            {foreach from=$_items item="item"}
                {foreach $item.photoalbum_photos as $img_id}
                	<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.photoalbum_title_url}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$img_id size="small" crop="auto" class="img_shadow" width=58 height=58 style="padding:2px;margin-bottom:4px;" alt="{$item.photoalbum_title|jrCore_entity_string}" title="{$item.photoalbum_title|jrCore_entity_string}" _v=$item._updated}</a>
            	{/foreach}
            {/foreach}
            {/if}
            {/literal}
            {/capture}

            {jrCore_list module="jrPhotoAlbum" profile_id = "`$_profile_id`" assign="photoalbums" template=$my_photoalbums_tpl}
            {if strlen($photoalbums) > 0}
                <div class="block block_profile_left">
                    <h3>My Photo Albums:</h3>
                    <div class="block_content mt10">
                        <div style="padding-top:8px">
                            {$photoalbums}
                        </div>
                        <a href="{$jamroom_url}/{$profile_url}/photoalbum">More Photo Albums</a>
                    </div>
                </div>
            {/if}
        {/if}

This works for small sites, but will need some tweaking to organize larger photo albums, plus will need a condition added for a maximum number of images to show per album. If anyone wants to add some tweaks that would be great! :)
  29