Anonymous User
(@anonymized-6763259)
In wordpress backend go to setting->Mp3 Player
And here you can set your client_id
-Simon
Thread Starter
sweetg
(@sweetg)
Simon
the Client id is already there, it looks like the soundcloud window has a field:
Redirect URI for Authentication:___________________
what do i put there & also what is client secret??
tx
Anonymous User
(@anonymized-6763259)
You dont have to enter “redirect uri for auth” if the set is not private.
The only thing you need is your client_id. Make sure u registered your app with your normal soundcloud login data. The login you use for your music on soundcloud.
It works on my webpage with just client id.
Thread Starter
sweetg
(@sweetg)
Ok cool, it shows now but it doesn’t play the tracks & the color of the playlist is very light, almost clear! what do i have to do to change that??
tx
Anonymous User
(@anonymized-6763259)
Put this in your css-file. I think that will do it.
-Simon
/*fix for playbutton*/
.playercontroller .button{
backround-color:#aaaaaa;
padding:0px;
}
/*color of track-titles*/
.mp3-item a{
color:#333333;
}
Thread Starter
sweetg
(@sweetg)
hmmm.. i can see the css file in my hosting service Control panel “content” folder,is that the right file??
when i open it its filled with hundreds of lines & lines & lines with no space!
where do i place this code exactly? anywhere in the file?
Anonymous User
(@anonymized-6763259)
In the themes folder theres a file called style.css
Put it in there.
-Simon
Thread Starter
sweetg
(@sweetg)
i placed the code in the middle of the file style.css but no change…
the songs are playing but the color is barely visible.
is there any special location to put that code? at the top? at the bottom?
underneath <head> or <body>… i’m not so familiar with css codes.
Anonymous User
(@anonymized-6763259)
Anonymous User
(@anonymized-6763259)
ups
I misspelled bacground-color, heres the rigth css
/*fix for playbutton*/
.playercontroller .button{
background-color:#aaaaaa;
padding:0px;
}
/*color of track-titles*/
.mp3-item a{
color:#333333;
}
Thread Starter
sweetg
(@sweetg)
looks like it’s the same previous code, anyway there is no change even after i pasted in the right css file….take a look :
http://www.flyringband.com/music/
Anonymous User
(@anonymized-6763259)
Try refresh your browser. It has changed. On pc a refresh is Ctrl+F5
The code is not the same. I missed a “g” in background in the first.
-Simon
Thread Starter
sweetg
(@sweetg)
Works like Magic! thank u very much Simon.