Forum Activity for @douglas

douglas
@douglas
12/28/16 12:28:10PM
2,807 posts

How would you do it?


Design and Skin Customization

You can do this by modifying a couple of templates, in your profile_header.tpl, find this:

{if jrProfile_is_profile_owner($_profile_id)}
    {assign var="from_profile" value="yes"}
{/if}

and change it to this:

{assign var="from_profile" value="yes"}

I'm not even sure how or why that if check was there, it is not needed.

Then in your header.tpl, change this:

{* MAIN MENU *}
{if !jrCore_is_mobile_device() && !jrCore_is_tablet_device()}
    {jrCore_include template="header_menu_desktop.tpl"}
{/if}

to this:

{* MAIN MENU *}
{if !jrCore_is_mobile_device() && !jrCore_is_tablet_device()}
    {if !isset($from_profile} || $from_profile != 'yes'}
        {jrCore_include template="header_menu_desktop.tpl"}
    {/if}
{/if}

That will show the main menu on the front end of your site but not on the profile pages.

Hope this helps!
douglas
@douglas
12/28/16 06:26:43AM
2,807 posts

Cosmetic Bug on Audio Pro


Installation and Configuration

I have this fixed for the next release.

Thanks!
douglas
@douglas
12/28/16 06:15:14AM
2,807 posts

Cosmetic Bug on Audio Pro


Installation and Configuration

Thanks @dazed, we'll get this fixed up.
douglas
@douglas
12/24/16 07:09:57AM
2,807 posts

Little Help With An Image


Design and Skin Customization

I would make sure that blog_on_air has a value of "on", what type of field is it?

I would also use the jrCore_image function to show images from your skin.

Change this:

<img src="{$jamroom_url}/skins/MixAP/img/onAir.png" width="50" height="50">

to this:

{jrCore_image image="onAir.png" width="50" height="50"}

Hope this helps!
douglas
@douglas
12/24/16 07:06:36AM
2,807 posts

Audio Pro - Bug on Index Page


Using Jamroom

This should be fixed for the next release.

Thanks!
douglas
@douglas
12/24/16 06:49:57AM
2,807 posts

Audio Pro - Bug on Index Page


Using Jamroom

Thanks @dazed we'll get it fixed up.
douglas
@douglas
12/22/16 03:44:14PM
2,807 posts

Happy Holiday!


Off Topic

Hope everyone has a Happy Holiday and New Year! :)
douglas
@douglas
12/20/16 02:30:10PM
2,807 posts

Left Column Info Missing


Design and Skin Customization

Ken Rich:
Hi Douglas,

It seems to work right in the regular profiles both signed in and not signed in (which is great),

However, I have someone just signing up and their left column info is an amalgamation of everyone's.

Here - https://indiegospel.net/shirleysimpson Also attached as screenshot

++++++++++++++++++++++

I saw this before, when I was first given the code. I just checked the old ticket. I thought it was Brian but it was
you who first gave me the code LOL.

In the ticket you said - "you had the wrong variable for the profile_id parameter".


Yep, and I did it again, should be fixed now though.

Thanks!
douglas
@douglas
12/20/16 10:20:28AM
2,807 posts

Left Column Info Missing


Design and Skin Customization

Hey Ken,

I've got this fixed for you, let me know if that is what your after.

Thanks!
  77