Jump to content

Profile Songs 2.0.0

   (4 reviews)

2 Screenshots

About This File

Profile Songs is originally a 4.1.x plugin developed by Rory Soh from the IPS Marketplace. It's been abandoned for nearly a year so I've taken the liberty of updating the plugin.

 

Original File Description

This allows you to set a custom song to the forum profile. Moderators and Administrators are allowed to remove them easily, it will erase the file from your web server as well. You simply just go to the member's profile who has an inappropriate song and remove it by selecting "Remove Song" from Profile Song option. You can also set profile songs for members if you wish.

 

What's New

  • 4.3.x compatibility, no template changes needed.
    • Any changes you made to your profile template for this plugin should be reverted.
  • NEW configurable profile song size setting. Song size is in kB (kilobytes). A minimum size of 1,000 (1MB or 1 Megabyte) and a maximum size of 50,000 (50MB).
    • This setting defaults to 2,500 (or 2.5MB).


Future Updates

I'll do my best to update this plugin for 4.4.x compatibility, if necessary, in a timely fashion. I'd also like to implement a configurable volume setting. In the meantime, you can use the steps below to add your own volume setting manually.

 


 

Add your own volume setting

Locate your ps_display HTML template and replace this:

    <div class='ipsType_center'>
      <p>
        {{if \IPS\Settings::i()->song_display_autoplay}}
          <audio autoplay="" controls="" loop="" preload="" class="ps_audio">
            <source src="{$profileSong->file->url}"></source>
          </audio>
        {{else}}
          <audio controls="" loop="" preload="" class="ps_audio">
            <source src="{$profileSong->file->url}"></source>
          </audio>
        {{endif}}
      </p>
    </div>

With this:

    <div class='ipsType_center'>
      <p>
        {{if \IPS\Settings::i()->song_display_autoplay}}
          <audio autoplay="" controls="" loop="" preload="" class="ps_audio" id="profilesong">
            <source src="{$profileSong->file->url}"></source>
          </audio>
        {{else}}
          <audio controls="" loop="" preload="" class="ps_audio" id="profilesong">
            <source src="{$profileSong->file->url}"></source>
          </audio>
        {{endif}}
      </p>
    </div>

And then add the following code to the bottom of that template:

<script>
  var audio = document.getElementById("profilesong");
  audio.volume = 0.25;
</script>

You can change the volume setting by changing the 0.25 (1.0 is default).


What's New in Version 2.0.0   See changelog

Released

  • Fixed a typo. Settings panel incorrectly displayed KB instead of kB. You can update over your existing installation or ignore it. No version change.
  • Like 6


User Feedback

You may only provide a review once you have downloaded the file.


MarkDev

   2 of 2 members found this review helpful 2 / 2 members

Beautiful and useful. ?

Link to review
kLeiNtjiEE

   1 of 1 member found this review helpful 1 / 1 member

It works perfectly, I just had to make some changes due to a conflict with another plugin

Link to review
Chip

  

Awesome, Still works with 4.4.9.1. Im a person that likes to have the player hidden but still play, To do this, Go into ps_display then.

Find

<div class='cProfileSidebarBlock ipsPad ipsBox ipsSpacer_bottom'>

Replace with this

<div class='ipsDrawer ipsHide'>

If you did it correctly the player should be hidden and playing.

Link to review
×
×
  • Create New...