Okay
  Public Ticket #1710522
Hiding the Playlist name
Closed

Comments

  • James Beaubeaux started the conversation

    I want to purchase the premium mp3 player so I can count the number of times folks click the play button on my Wordpress.com site, www.LivingInBeauty.net.

    I will be replacing the standard audio player on Wordpress.com with yours, but I do not like that it displays the playlist name on the Post when I select only one playlist.  Is there a way to hide the playlist name from the post and only have it display the player control and sound wave but not the playlist name?

  •  1,103
    Max replied

    Hi James,

    First, your project you and your wife to travel across all America is awesome! I love it! Keep it up, and welcome to Canada, I hope you like it.

    For our player, it wont automatically replace all the mp3 you already embed on your site by our player...for that, you will need to reupload your MP3 into our Custom Post Type (wp-admin > playlist).

    To hide a playlist name from the post, it should be pretty easy with a simple css class such as: 

    .sr_it-playlist-title {
        display: none;
    }

    You can put this in your theme's custom css, or in wp-admin > appearance > customize > custom css


    Thanks




    Thanks,


    Max from the Sonaar.io Crew

  • James Beaubeaux replied

    Thanks for the CSS code.

    I placed it in the CSS area (see attached)

    Screen Shot 2018-09-13 at 10.03.07 AM.png

    But the playlist stills shows up on the post (see attached)

    Screen Shot 2018-09-13 at 10.02.29 AM.png


    Here is the page the audio player is located

    https://livinginbeauty.net/2016/03/29/00094/

    Am I missing something?

  •  1,103
    Max replied

    Ok, try this instead:

    .track-title {
        display: none!important;
    }


    (the screenshot provided are broken..)


    Thanks,


    Max from the Sonaar.io Crew

  • James Beaubeaux replied

    That did it thanks!