Forum Activity for @douglas

douglas
@douglas
02/08/15 06:42:31AM
2,807 posts

featured playlist on profile


Design and Skin Customization

Without being able to see all the code your using for this, there isn't much we can do but suggest things.

Is the playlist on a profile page or site page?

Can you show us the code/function your using to get the $item.playlist_items variable?

In the Nova skin, we've got two functions getting the playlist for the radio section... note that this is a popup player, but it should give you an idea of what you'll need to do to make your player work.

index.tpl
{jrCore_list module="jrPlaylist" order_by="_created desc" search1="playlist_title = Admin Playlist Title" profile_id="1" template="index_radio.tpl"}

index_radio.tpl
<a onclick="popwin('{$jamroom_url}/radio_player/playlist_id={$item._item_id}/title={$item.playlist_title}/autoplay=true','radio_player',460,220,true);">{jrCore_image image="button_player_play.png" width="32" height="32" alt="{$item.playlist_title}" title="{$item.playlist_title}" onmouseover="$(this).attr('src','`$jamroom_url`/skins/`$_conf.jrCore_active_skin`/img/button_player_play_hover.png');" onmouseout="$(this).attr('src','`$jamroom_url`/skins/`$_conf.jrCore_active_skin`/img/button_player_play.png');"}</a>

radio_player.tpl
{jrPlaylist_util mode="embed_playlist" playlist_id=$_post.playlist_id template="radio_playlist.tpl"}

radio_playlist.tpl
{if isset($_conf.jrNova_auto_play) && $_conf.jrNova_auto_play == 'on'}
    {assign var="vap" value="true"}
{elseif isset($_post.autoplay) && $_post.autoplay == 'true'}
    {assign var="vap" value="true"}
{else}
    {assign var="vap" value="false"}
{/if}

{jrCore_media_player type="jrPlaylist_player_dark" module="jrPlaylist" item=$item autoplay=$vap}

Hope this helps!
douglas
@douglas
02/08/15 06:30:09AM
2,807 posts

Does not count correctly?


Using Jamroom

Brian is out of town until tomorrow (Monday) so you'll want to wait for him to get back to help you. We aren't seeing any issues on our end so it has to be something specific with your setup.
douglas
@douglas
02/07/15 09:41:03AM
2,807 posts

Homepage not visible to logged out users


Using Jamroom

The admin sees everything, so make sure the modules that you don't see are allowing your quotas access to it via the modules Quota Config tab.

Also, make sure you have an index page setup in your menu. Without logging in, I can't tell if you have one already or not, it doesn't seem that you do.
douglas
@douglas
02/07/15 09:38:17AM
2,807 posts

Images on profile tabs - is it possible?


Design and Skin Customization

iamtimbo:
I have a whole different tab issue at present, where some don't show. I've reset the profile_menu template back to the default, but it's persisting and I have no idea what's causing it...!

Make sure you clear your cache if it is enabled. ACP > System Tools > Reset Cache
douglas
@douglas
02/07/15 09:35:07AM
2,807 posts

ningja skin 1.0.16 changelog


Ning To Jamroom

Yes, you should be able to compare your skin templates to jrNingja skin templates.
douglas
@douglas
02/07/15 08:08:52AM
2,807 posts

Homepage not visible to logged out users


Using Jamroom

Do you have a we can check out?
douglas
@douglas
02/07/15 04:36:15AM
2,807 posts

Homepage not visible to logged out users


Using Jamroom

Make sure your using the latest versions of the Site Builder modules, I'm not seeing an issue on my dev site.
douglas
@douglas
02/07/15 04:26:23AM
2,807 posts

new ningja update issue


Ning To Jamroom

Make sure your skin settings have those check boxes checked in the profile tab.
douglas
@douglas
02/07/15 03:21:36AM
2,807 posts

ningja skin 1.0.16 changelog


Ning To Jamroom

The templates modified are

index.tpl - changed the tag cloud height
header_menu_desktop.tpl - Rearranged to accommodate new float settings.
profile_header.tpl - Changed to fix the profile side from showing while on the forum page.

The align-left class was moved from the header.css to the image.css

And the float adjustments were done in the menu.css file.

You should be able to use the compare tool to find the actual changes in these files.

Hope this helps! :)
  173