Forum Activity for @paul

paul
@paul
01/15/16 02:01:16AM
4,335 posts

Showcase Member Sites


Announcements

Have been going through the member sites showcased at https://www.jamroom.net/showcase/sites clearing out non JR5 sites and broken links. All good now so if you want your site listed there, go to your profile here on jamroom.net and click on the Sites button. If in the description you can also say something positive about Jamroom and how your site was built with it, that would be great :-)
Thanks
Pa
PS Also looking for any imported Ning sites not yet listed here - https://www.jamroom.net/ning-to-jamroom/mysites
updated by @paul: 05/15/16 02:43:36AM
paul
@paul
01/15/16 12:35:14AM
4,335 posts

Site-wide Forum Header


Design and Skin Customization

Thanks Doug - Let us know how you get on.
Note that I've just edited the above post, I forgot to test for profile_id as well as profile owner on line 28.
paul
@paul
01/14/16 10:36:10PM
4,335 posts

Like/Dislike Buttons - semi-anonymous


Ning To Jamroom

Quote: That does SOMETHING, but not enough. some kind of shadow box comes up, but it's black on black and I can't read anything.
Sounds like one of your CSS mods have messed this up. Let me have your admin login (see your other thread) and I'll check this out as well.
paul
@paul
01/14/16 10:33:15PM
4,335 posts

Discussions closing after 30 days


Ning To Jamroom

Thanks Strum. When Scott lets me into his site I'll see exactly what the issue is.
paul
@paul
01/14/16 08:59:08PM
4,335 posts

Discussions closing after 30 days


Ning To Jamroom

Your site is set to logged in users only. Can you send your admin login as a ticket?
Thanks
paul
@paul
01/14/16 08:01:25PM
4,335 posts

Birthday Notifications


Suggestions

Ceri:
Ahhh ...of course I realise now that the more link IS plain text :) But where should that link go. Not sure how to construct it?

Maybe construct a page with Site Builder called "Today's Birthdays". Add a (full width?) widget to it with the same template code but with a bigger limit (100 say) and the break, counter and more link removed. Then link the More to that -

<a href="{$jamroom_url}/todays_birthdays">More</a>
paul
@paul
01/14/16 07:55:27PM
4,335 posts

Like/Dislike Buttons - semi-anonymous


Ning To Jamroom

Quote: Right now you can receive an email that tells you who liked your post, but it doesn't say publicly. I'd rather have it completely anonymous or better yet, completely public. Facebook shows a list of who liked something. Can I have that?
Hover over the Like buttons and you'll get a list of who has liked an item.

Quote: Also, can I ONLY have a like button instead of both?
Checkout the Like module's Config tab in the ACP and select 'Like Button Only'.
hth
paul
@paul
01/14/16 07:49:50PM
4,335 posts

Discussions closing after 30 days


Ning To Jamroom

hypnoscott:
Hi paul,
I'll do that now. The stuff I'm missing is files that were uploaded inside groups. Lots of files were there, now there are none. from what I understand Ning doesn't include them in the archive.

Your site approved and showing in the showcase/members section (I took a screenshot of your homepage and added that) - thanks.
Is this an image embedded in a comment? Can you point me to where something is missing so that I can check it out?

Quote: Strumelia - what is the Jamroom tool to use on the groups? maybe I should give that another go
ACP=>Profiles=>Group Pages=>Tools=>Page Group Config
paul
@paul
01/14/16 07:15:38PM
4,335 posts

Site-wide Forum Header


Design and Skin Customization

Hi - Welcome to the Jamroom forums.

In your skins profile_header.tpl test for the Community profile and if true, don't show the top bar. Then, if the viewer/user is not the profile owner or admin, don't show the profile menu bar either -

{jrCore_include template="header.tpl"}

<div class="container">

	{if $profile_id != 2}

    <div class="row">
        <div class="col12 last">
            <div class="profile_name_box">
            
                <div class="block_config" style="margin-top:3px">
                    {jrCore_module_function function="jrFollower_button" profile_id=$_profile_id title="Follow This Profile"}
                    {jrCore_item_update_button module="jrProfile" view="settings/profile_id=`$_profile_id`" profile_id=$_profile_id item_id=$_profile_id title="Update Profile"}
                    {if jrUser_is_admin() || jrUser_is_power_user()}
                        {jrCore_item_create_button module="jrProfile" view="create" profile_id=$_profile_id title="Create new Profile"}
                    {/if}
                    {jrProfile_delete_button profile_id=$_profile_id}
                </div>

                <a href="{$jamroom_url}/{$profile_url}"><h1 class="profile_name">{$profile_name}</h1></a>
                
            </div>
        </div>
    </div>
    
    {/if}
    
    {if $profile_id != 2 || jrProfile_is_profile_owner($profile_id)}

    <div class="row">
        <div class="col12 last">
            <div class="profile_menu">
                {if jrCore_is_mobile_device()}
                    {jrProfile_menu template="profile_menu_mobile.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
                {else}
                    {jrProfile_menu template="profile_menu.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
                {/if}
            </div>
        </div>
    </div>

	{/if}

    <div class="row">

    {if $profile_disable_sidebar != 1}
        {jrCore_include template="profile_sidebar.tpl"}
    {/if}
hth
updated by @paul: 01/15/16 12:33:12AM
paul
@paul
01/14/16 06:53:29PM
4,335 posts

Birthday Notifications


Suggestions

Try this -

{capture name="birthday_tpl" assign="birthday_tpl"}
    {literal}
	<div class="container">
    	    {if isset($_items)}
                {$ctr = 0}
                {foreach from=$_items item="item"}
                    {if $item@first || ($item@iteration % 2) == 1}
                        <div class="row">
                    {/if}
                    <div class="col6{if $item@last || ($item@iteration % 2) == 0} last{/if}">
                        {$profile_url = jrCore_db_get_item_key('jrProfile', $item['_profile_id'], 'profile_url')}
                        <a href="{$jamroom_url}/{$profile_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="large" crop="portrait" class="img_scale" style="margin:0" alt="@`$item.user_name`" title="@`$item.user_name`"}</a>
                    </div>
                    {if $item@last || ($item@iteration % 2) == 0}
                        </div>
                    {/if}
                    {$ctr = $ctr + 1}
                    {if $ctr == 4}
                    	{break}
                    {/if}
                {/foreach}
				{if $info.total_items > 4}
				    // 'More' link code here
				{/if}
            {/if}
        </div>
    {/literal}
{/capture}

{$this_day = $smarty.now|date_format:"d"}
{$this_month = $smarty.now|date_format:"m"}
{jrCore_list module="jrUser" search="user_birthdate LIKE %`$this_month`-`$this_day`" limit="5" template=$birthday_tpl}
  240