Forum Activity for @douglas

douglas
@douglas
11/30/15 08:39:14AM
2,812 posts

Still Unable to upgrade


Using Jamroom

If your using the latest Nova skin, the JS for those tabs has been moved out of the jrNova.js file and into the templates. So this code:

<script type="text/javascript">
    $(document).ready(function(){
        jrSkinInit();
    });
</script>

is no longer needed and could cause issues. Instead the actual javascript for each page has been added directly into the templates for that particular page. For example, the index.tpl now has this instead:

<script type="text/javascript">
    $(document).ready(function(){
        jrLoad('#sm',core_system_url +'/index_artists');
        jrLoad('#top_artists',core_system_url +'/top_artists');
        jrLoad('#top_songs',core_system_url +'/top_songs');
        jrSetActive('#default');
     });
</script>

Hope this helps!
douglas
@douglas
11/30/15 05:16:52AM
2,812 posts

ProJam - Remove Profile on Blog


Using Jamroom

What you have should work, can you send me your URL, FTP and login info so I can take a look?

douglas[at]jamroom[dodt]net

Note that in this code:

{if isset($option) && $option != 'all'}
    {jrCore_list module="jrBlog" order_by="_created desc" limit="5" search1="_user_id = 1" search2="blog_category = `$option`" search3="profile_id != 30'" template="blogs_row.tpl"}
{else}
    {jrCore_list module="jrBlog" order_by="_created desc" limit="5" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" search2="profile_id != 30" template="blogs_row.tpl"}
{/if}

The top jrCore_list function does not need the profile_id search since the first search only lists user_id 1 blogs, which is usually the site admin user_id. So the blogs.tpl should be this instead.

{if isset($option) && $option != 'all'}
    {jrCore_list module="jrBlog" order_by="_created desc" limit="5" search1="_user_id = 1" search2="blog_category = `$option`" template="blogs_row.tpl"}
{else}
    {jrCore_list module="jrBlog" order_by="_created desc" limit="5" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" search2="profile_id != 30" template="blogs_row.tpl"}
{/if}

updated by @douglas: 11/30/15 05:17:37AM
douglas
@douglas
11/29/15 04:24:37AM
2,812 posts

ProJam - Remove Profile on Blog


Using Jamroom

Try changing your search to this:

 search2="profile_id != 30"


Thanks!
updated by @douglas: 11/29/15 04:30:46AM
douglas
@douglas
11/28/15 03:48:03AM
2,812 posts

Where to get quality traffic for my JR site


Suggestions

You can try Michael's suggestion, however I don't think you'll find a site that comes close to MusicSubmit or one that will allow you to signup as a resource for their artists/bands.

A lot of those A&R sites deal with high-end label companies only.
douglas
@douglas
11/28/15 03:30:22AM
2,812 posts

Contact button to Profile menu


Design and Skin Customization

Strumelia:
Eddy, would you consider adding a small screenshot here for what this looks like once applied to your site?

And... Douglas, would this work for a custom Ningjs skin as well, using the same code?

Yes, just add this:

<a href="{$jamroom_url}/note/new/"><div class="profile_menu_entry">Contact</div></a>

to the bottom of your skins profile_menu.tpl, see the attachment for what it looks like in the jrNingja skin.




gary.moncrieff:
I don't see any reason why it won't work. If in doubt just add the extra bit of code to your template file. Just one note however if you have private notes set to followers only it might be a wise idea to do a check to dertimine who can see the menu item.

I'm not sure adding a check for the profile being a follower or not would matter since it is just a link to the viewers Private Notes > New Note form.
Screen Shot 2015-11-28 at 5.29.36 AM.png Screen Shot 2015-11-28 at 5.29.36 AM.png - 32KB

updated by @douglas: 11/28/15 03:30:59AM
douglas
@douglas
11/27/15 09:27:38AM
2,812 posts

Where to get quality traffic for my JR site


Suggestions

Actually, I don't... that is the only one I've ever come across. Sorry!
douglas
@douglas
11/27/15 07:11:33AM
2,812 posts

Change menu button color


Design and Skin Customization

Just add the hover class to that link, in your skins/jrNova/header_menu_desktop.tpl, find this:

                    <li><a href="{$jamroom_url}/{jrCore_module_url module="jrUser"}/signup"><span class="capital">{jrCore_lang  skin=$_conf.jrCore_active_skin id="2" default="create"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="3" default="account"}</span></a></li>

and change it to this:

                    <li style="{$menu_active_style}"><a href="{$jamroom_url}/{jrCore_module_url module="jrUser"}/signup"><span class="capital">{jrCore_lang  skin=$_conf.jrCore_active_skin id="2" default="create"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="3" default="account"}</span></a></li>
  125