Forum Activity for @douglas

douglas
@douglas
03/28/14 08:45:13AM
2,808 posts

Contact Form


Installation and Configuration

You shouldn't have to do anything, what skin are you using?

The contact_us.tpl for default JR5 skins is setup for a Private Note if you do not have the Custom Forms module installed.

Hope this helps,
Douglas
douglas
@douglas
03/28/14 04:29:41AM
2,808 posts

Adding a clickable link on home page


Design and Skin Customization

Your link would look something like this:

{if jrUser_is_logged_in()}
<li><a href="{$jamroom_url}/packages"{if isset($selected) && $selected == 'packages'} style="color: {$active_color};"{/if}>Purchasable Packages</a></li>
{/if}

You would then start by creating a template named packages.tpl so your new link has some where to land. Note that you can change the name of the template to whatever you want it to be, just make sure to change the link in the header.tpl too. In that template, to get it to look like the rest of MediaPro, you'll want to start with this:

{assign var="selected" value="packages"}
{assign var="no_inner_div" value="true"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">

        <div class="col12 last">

            <div class="title">
                <h1>Packages</h1>
            </div>

            <div class="body_1">
            	
            	YOUR jrCore_list FUNCTION GOES HERE.
            
            </div>

        </div>

    </div>

</div>
{jrCore_include template="footer.tpl"}


You can checkout this doc to see how the jrCore_list function is used.

https://www.jamroom.net/the-jamroom-network/documentation/howto/1080/howto-using-jrcore-list-in-a-template-step-by-step

Hope this helps,
Douglas
douglas
@douglas
03/27/14 08:01:31AM
2,808 posts

Meta Tags Not Working


Design and Skin Customization

My guess would be that the $selected variable is not getting set to "track".

Is this the title for a profile page?
douglas
@douglas
03/24/14 12:48:10AM
2,808 posts

MediaPro about page not working


Using Jamroom

I've got this fixed in the latest Marketplace update.

Thanks!
douglas
@douglas
03/24/14 12:29:02AM
2,808 posts

MediaPro about page not working


Using Jamroom

I'm seeing that too, not sure how that was missed but I'll have a fix in the Marketplace for it soon.

Thanks!
douglas
@douglas
03/23/14 07:08:33AM
2,808 posts

MediaPro about page not working


Using Jamroom

I just tried this on the demo site and it is working there.

http://demo.jamroom.net/jrMediaProLight/about

Make sure you've cleared your cache.

Hope this helps,
Douglas
douglas
@douglas
03/22/14 01:05:50PM
2,808 posts

current update broke site


Jamroom Help

I'm not sure what your row template looks like by you might make sure that you are calling the song image and not the profile image.
douglas
@douglas
03/22/14 07:22:51AM
2,808 posts

Twitter widget breaks front page if added


Design and Skin Customization

Yes, removed the literal code and changed the { and } to {ldelim} and {rdelim}

Either way should work.
douglas
@douglas
03/22/14 06:17:44AM
2,808 posts

Twitter widget breaks front page if added


Design and Skin Customization

MAD©:
Ok That Worked!!
Great. The anchor tags and script tags have spaces BTW in the code above.
Anyone else with same problem make sure they edit the code to remove the spaces ( Added so the code could be posted here

No need to add the spaces anymore, that has been fixed. I modified my two posts to remove the spaces form the code.
  232