Forum Activity for @douglas

douglas
@douglas
03/11/14 06:43:09AM
2,808 posts

Tag Cloud Not Resizing


Design and Skin Customization

Have you tried removing the "px" in the height parameter? I don't think you want that in there.
douglas
@douglas
03/11/14 06:39:25AM
2,808 posts

I frame still not working


Installation and Configuration

Can you send me your admin login so I can check this out?

douglas[at]jamroom[dot]net

Thanks!
douglas
@douglas
03/11/14 06:30:28AM
2,808 posts

Featured member / artist not showing


Using Jamroom

ouviste:
Thanks for letting me know MAD, I haven't done anything on my site today, only updated the JR core and a couple of modules, did you mean featured members or featured songs? Right now it doesn't show the featured artist and featured member, logged in or out.

If your jrCore_list functions look like this for your "Today's Featured Member":

{if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
    {if isset($_conf.jrProJamLight_featured_member) && $_conf.jrProJamLight_featured_member > 0}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" search2="_profile_id = `$_conf.jrProJamLight_featured_member`" template=$feat_mem_today require_image="profile_image"}
    {elseif isset($_conf.jrProJamLight_member_quota) && $_conf.jrProJamLight_member_quota > 0}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" search2="profile_quota_id in `$_conf.jrProJamLight_member_quota`" template=$feat_mem_today require_image="profile_image"}
    {else}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" template=$feat_mem_today require_image="profile_image"}
    {/if}
{else}
    {if isset($_conf.jrProJamLight_featured_member) && $_conf.jrProJamLight_featured_member > 0}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" search2="_profile_id = `$_conf.jrProJamLight_featured_member`" template=$feat_mem_today}
    {elseif isset($_conf.jrProJamLight_member_quota) && $_conf.jrProJamLight_member_quota > 0}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" search2="profile_quota_id in `$_conf.jrProJamLight_member_quota`" template=$feat_mem_today}
    {else}
        {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" template=$feat_mem_today}
    {/if}
{/if}

try changing it to this:

{if isset($_conf.jrProJamLight_featured_member) && $_conf.jrProJamLight_featured_member > 0}
    {jrCore_list module="jrProfile" limit="1" search1="_profile_id = `$_conf.jrProJamLight_featured_member`" template=$feat_mem_today}
{else}
    {if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
        {if isset($_conf.jrProJamLight_member_quota) && $_conf.jrProJamLight_member_quota > 0}
            {jrCore_list module="jrProfile" order_by="_created random" limit="1" quota_id=$_conf.jrProJamLight_member_quota search1="profile_active = 1" template=$feat_mem_today require_image="profile_image"}
        {else}
            {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" template=$feat_mem_today require_image="profile_image"}
        {/if}
    {else}
        {if isset($_conf.jrProJamLight_member_quota) && $_conf.jrProJamLight_member_quota > 0}
            {jrCore_list module="jrProfile" order_by="_created random" limit="1" quota_id=$_conf.jrProJamLight_member_quota search1="profile_active = 1" template=$feat_mem_today}
        {else}
            {jrCore_list module="jrProfile" order_by="_created random" limit="1" search1="profile_active = 1" template=$feat_mem_today}
        {/if}
    {/if}
{/if}

Hope this helps,
Douglas
douglas
@douglas
03/10/14 09:17:35AM
2,808 posts

jamroom.net profile has lost forum hompage


Jamroom Developers

Actually if your profile name on your profile page didn't link to the activity stream, there would be no link to get to your activity stream.
updated by @douglas: 03/10/14 09:17:52AM
douglas
@douglas
03/10/14 09:14:54AM
2,808 posts

jamroom.net profile has lost forum hompage


Jamroom Developers

Do you have the forum set as your Account Settings > Customize > Profile Index?
douglas
@douglas
03/10/14 09:08:52AM
2,808 posts

Nova Clone


Feedback

MAD©:
New site is http://www.punkbandpromotions.com

Looking good, nice work! :)
douglas
@douglas
03/10/14 09:04:40AM
2,808 posts

Translations for Nova Skin


Tips and Tricks

MAD©:
German ( de-DE.php? Dutch is on its way )

Thanks!

I've got this ready to go but I'll wait on the Dutch language before releasing it so they can be released at the same time.
douglas
@douglas
03/10/14 08:53:45AM
2,808 posts

JR5 SEO


Using Jamroom

I did it on a site I'm doing, every page has its own title and description. In the meta.tpl file, I did this above the title tags:

{if isset($profile_page_title) && strlen($profile_page_title) > 0}
	{assign var="page_title" value=$profile_page_title}
{elseif isset($page_title) && strlen(page_title) > 0}
	{assign var="page_title" value=$page_title}
{elseif isset($default_title) && strlen(default_title) > 0}
    {assign var="default_title" value=$default_title}
{else}
    {jrCore_lang skin="AllPro" id="1" assign="default_title"}
{/if}

and then on the front-end pages I did something like this just above the header.tpl include line:

{if isset($_conf.AllPro_about_title) && strlen($_conf.AllPro_about_title) > 0}
    {assign var="page_title" value=$_conf.AllPro_about_title}
{else}
    {jrCore_lang skin=$_conf.jrCore_active_skin id="86" default="About" assign="page_title"}
{/if}
{jrCore_page_title title=$page_title}

Then created a field in the skins config.php file for each page on the site.

Then I created custom form fields for the profile so each profile page could have its own title well.

You can do the same for keywords and page descriptions too.

I know that can make for a lot of skin config fields and custom form fields, but my client wanted it this way so he could change the title, keywords and description for each individual page if needed.

BTW, user id=1 is the master admins profile ID, so that would not be the home page, it would be the master admins profile page.

Hope this helps,
Douglas
douglas
@douglas
03/10/14 08:15:23AM
2,808 posts

Blan page on install


Installation and Configuration

The .htaccess file may be hidden on your system by default, however, you can configure your FTP client to show those files.

The .htaccess file that comes with JR5 needs to be in the same directory that your are installing JR5 to.

Hope this helps,
Douglas
douglas
@douglas
03/09/14 11:12:41AM
2,808 posts

I frame still not working


Installation and Configuration

I don't have admin access to your site, did you mention this when you sent the login info to Brian?
  238