Jump to content

5 Screenshots

About This File

This plugin will allow you to add music to your profile.

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 01/17/2017 03:34 AM   See changelog

Released

No changelog available for this version.


User Feedback

Recommended Comments

waqas dar

Posted

On 4/17/2019 at 1:56 AM, SNIPER AMERCAN OWNER said:

I need it but can't download it -_-

u need atleast 3 post to download files

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.