Forum Activity for @developer-networks

Developer Networks
@developer-networks
03/23/14 07:24:43AM
566 posts

Bootstrap Skin


Design and Skin Customization

@brian Yes I use Firefox and Firebug. Thank you for suggesting these they are excellent tools.

@michael
Its not really a Bootstrap Skin from get hub support issue.

Im having a problem with using Javascripts. When I include some of them the audio dosent work on the desktops and not really sure why.

It was more of a development question regarding audio not playing while designing a skin. Also it is effecting the integrity checks.

Having the same issue even if I use jrBlank skin 1.0.1

When I enable some JS needed for the skin it disables the Audio player.

Also congrats on your upcomming skin!

Thanks
updated by @developer-networks: 03/23/14 07:27:12AM
Developer Networks
@developer-networks
03/22/14 07:48:28AM
566 posts

Bootstrap Skin


Design and Skin Customization

Working on a skin built on twitter bootstrap for Jamroom the last couple of days.

Seems the integrity check runs and after it finishes green I cant click on ok its hanging there.

Also the audio songs are not playing or showing up on the artist albums song list. However when I view it on a mobile device this dosent happen and all functions as normal.
updated by @developer-networks: 04/26/14 05:40:17PM
Developer Networks
@developer-networks
03/20/14 01:54:34AM
566 posts

module url question


Jamroom Developers

I am creating a module and my urls to the module are not reachable.

It lands me on a 404 error.

myModuleTest/templates/mypage.tpl

where myModuleTest url = moduletest

so if i type in

www.mysite.com/moduletest/mypage

I get a 404 error.


I am able to reach the pages by typing in the long address but how do I get the routing system to work with my module?

Do I need a magic view for each one?


updated by @developer-networks: 04/19/14 09:19:57PM
Developer Networks
@developer-networks
03/19/14 12:11:34AM
566 posts

Media Pro Light Top Singles


Using Jamroom

Create a tpl file call it topsongs.tpl or something
{if isset($_items)}
  {foreach from=$_items item="item"}
  <div style="display:table">
      <div style="display:table-row">
          <div style="display:table-cell">
              <a href="{$jamroom_url}/{$item.profile_url}/{$_params.module_url}/{$item._item_id}/{$item.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._item_id size="small" crop="auto" alt=$item.audio_title title=$item.audio_title class="iloutline" width=false height=false}</a>
          </div>
          <div class="p5" style="display:table-cell;vertical-align:middle">
              <a href="{$jamroom_url}/{$item.profile_url}/{$_params.module_url}/{$item._item_id}/{$item.audio_title_url}" class="media_title" title="{$item.audio_title}">{if strlen($item.audio_title) > 25}{$item.audio_title|truncate:25false}{else}{$item.audio_title}{/if}</a><br>
              {jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_file" item=$item}
          </div>
      </div>
  </div>
  {/foreach}

{/if}

then you want to call top songs from your index template to list the song like this.

 {jrCore_list module="jrAudio"  order_by="_created desc" template="topsong.tpl" limit="1" require_image="audio_image" width="250"}

Heres the docs you need to review on this subject.
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
updated by @developer-networks: 03/19/14 12:45:19AM
Developer Networks
@developer-networks
03/18/14 11:51:43PM
566 posts

Locked Pages (FOR VIP MEMBERS)


Using Jamroom

something like this
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search1="_profile_id = "YOUR PROFILE ID"" search2="audio_album = "YOUR ALBUM ID"" order_by="audio_file_track numerical_asc" limit="50" autoplay=$_conf.$ap} 


Or go to the create audio form designer and create a field. Call it VIP_Download or something and make a check box for type. This way if the box is checked any vip member can download the song for FREE create the if statement to show the download button if they are in the vip quota.
Using the Form Designer tool
form designer profile fields
Developer Networks
@developer-networks
03/18/14 07:32:58PM
566 posts

Facebook player for videos


Suggestions

Actually from my understanding the only way to play the audio inside facebook is tag it like a video so im sure this could be done by looking at how the audio was shared.
Developer Networks
@developer-networks
03/17/14 11:49:40PM
566 posts

Locked Pages (FOR VIP MEMBERS)


Using Jamroom

Create your pages with coding like this:

{if $quota_myBadges_badge_type == "vipmember"}
<div class="row">
<div class="col12">
  <div class="containter">
<p> This is some exclusive content </p>
</div>
</div>
</div>{else}
<p> You are not authorized to view this page </p>


{/if}

updated by @developer-networks: 03/17/14 11:50:55PM
Developer Networks
@developer-networks
03/16/14 07:53:59AM
566 posts

Setup


LifeStreams

In the file /modules/ujLifestreams/js/youtube.js

I had swap out lines 51 & 60 from http:// to https:// to get youtube working on a secured site.
Developer Networks
@developer-networks
03/16/14 07:29:20AM
566 posts

Setup


LifeStreams

Your Brilliant Steve! That was it! My skin did not have that added to the footer. I will notify the designer of this. Im very excited to have this module working now! Thank you so much for all your support!
  31