PreseaLover Posted November 25, 2016 Author Share Posted November 25, 2016 On 11/24/2016 at 7:19 PM, Kavvz said: lol! And your friend (that Wills girl ) popped up outta nowhere and went viral with a collaboration with Iraj W too huh>? What Interesting times we live in! ( Whatever said and done, whether its in good taste or not, Iraj W. certainly knows how to get out and get noticed! ) Expand stay tuned, natasha's video interview coming out on the 1st of dec Did few other video interviews as well, if you have noticed under the "Interviews Menu"... not sure if you guys know any of them... Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 1, 2016 Author Share Posted December 1, 2016 IT experts out there need your expertise on the following issue which I'm trying to figure out a way around I'm trying to add a static media player to the footer of the webpage as a media player that will queue all the songs that people will add to playlist from various artists. So while people add each song in the site to the playlist, they can navigate to every page without the song being interrupted, and when its finished the next song in the playlist queue will play... So my issue is, I currently have the songs on a playlist created using 'wordpress - Cue plugin'. I need to have a URL or a Button as "Add to playlist" that will push these songs to my static player in the footer. For this, I need to use the song location in the URL. How can I get the song location of each song that is appeared in the playlist? Thanks in advance Quote Link to comment Share on other sites More sharing options...
fiatLife Posted December 2, 2016 Share Posted December 2, 2016 On 12/1/2016 at 3:33 AM, PreseaLover said: IT experts out there need your expertise on the following issue which I'm trying to figure out a way around I'm trying to add a static media player to the footer of the webpage as a media player that will queue all the songs that people will add to playlist from various artists. So while people add each song in the site to the playlist, they can navigate to every page without the song being interrupted, and when its finished the next song in the playlist queue will play... So my issue is, I currently have the songs on a playlist created using 'wordpress - Cue plugin'. I need to have a URL or a Button as "Add to playlist" that will push these songs to my static player in the footer. For this, I need to use the song location in the URL. How can I get the song location of each song that is appeared in the playlist? Thanks in advance Expand For uninterrupted song play, a clean and neat way to do it , is the way that Soundcloud.com and Spotify.com made through ajaxifying all the pages. Fix a page and change the pages content through ajax ,and change the url as well to give the user the illusion of navigating. This is not the easiest or fastest solution ,but it's the cleanest one. Use Ajax to load content and HTML5 history API (history.pushState()) to alter URL without page reloading. Another possible option is to use cookies to save current playing position (Audio.currentTime) when user leaves a page and then extract position from cookie and set it to Audio.currentTime value when loading new page. Note that this may cause a noticeable pause in playing while new page is loading, so, for uninterrupted playback, the Ajax/history approach is preferred. Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 2, 2016 Author Share Posted December 2, 2016 (edited) On 12/2/2016 at 11:46 AM, fiatLife said: For uninterrupted song play, a clean and neat way to do it , is the way that Soundcloud.com and Spotify.com made through ajaxifying all the pages. Fix a page and change the pages content through ajax ,and change the url as well to give the user the illusion of navigating. This is not the easiest or fastest solution ,but it's the cleanest one. Use Ajax to load content and HTML5 history API (history.pushState()) to alter URL without page reloading. Another possible option is to use cookies to save current playing position (Audio.currentTime) when user leaves a page and then extract position from cookie and set it to Audio.currentTime value when loading new page. Note that this may cause a noticeable pause in playing while new page is loading, so, for uninterrupted playback, the Ajax/history approach is preferred. Expand Hi Fiat... We are using ajax... Issue is we need to keep our current music player which is already embedded.. we need to keep the current playlist if people wants to listen to a single song and integrate the player in the bottom to that static player (the static player will be there in the footer in every page when navigating.. (you get what I mean).. so what im stuck here with is how to add the url of the song location, to that player in the bottom (static player) when the user clicks the "add to playlist" button.. I need to take that connection from that "add to play list" button to the main static player at the bottom... Edited December 2, 2016 by PreseaLover Quote Link to comment Share on other sites More sharing options...
fiatLife Posted December 2, 2016 Share Posted December 2, 2016 On 12/2/2016 at 1:35 PM, PreseaLover said: Hi Fiat... We are using ajax... Issue is we need to keep our current music player which is already embedded.. we need to keep the current playlist if people wants to listen to a single song and integrate the player in the bottom to that static player (the static player will be there in the footer in every page when navigating.. (you get what I mean).. so what im stuck here with is how to add the url of the song location, to that player in the bottom (static player) when the user clicks the "add to playlist" button.. I need to take that connection from that "add to play list" button to the main static player at the bottom... Expand yep got your idea, what i presented above was uninterrupted song playing when navigating to links. you can get the mp3 url of the song you want to add to the player/playlist and append a new song to the playlist with the said url. You can use jquery. ex: var playerName = $('#myPlaylist'); //playlist id at the bottom of the page var clickedItemUrl = $(this).attr('data-src'); //individual song you want to add to the playlist $(playerName).append('<li> <a href="#" data-src="'+clickedItemUrl+'">NEW SONG</li>'); Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 3, 2016 Author Share Posted December 3, 2016 On 12/2/2016 at 1:53 PM, fiatLife said: yep got your idea, what i presented above was uninterrupted song playing when navigating to links. you can get the mp3 url of the song you want to add to the player/playlist and append a new song to the playlist with the said url. You can use jquery. ex: var playerName = $('#myPlaylist'); //playlist id at the bottom of the page var clickedItemUrl = $(this).attr('data-src'); //individual song you want to add to the playlist $(playerName).append('<li> <a href="#" data-src="'+clickedItemUrl+'">NEW SONG</li>'); Expand ah thanks fiatlife, will try that out Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 3, 2016 Author Share Posted December 3, 2016 We covered our first event for a Stigmata Concert as a media partner, and shot the following video that displays a special performance with 5 ladies from the soul sounds choir singing along with Stigmata... Here's to all the Rock Music lovers https://www.youtube.com/watch?v=VW5L3TeKuAw&t=6s Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 3, 2016 Author Share Posted December 3, 2016 On 12/2/2016 at 1:53 PM, fiatLife said: yep got your idea, what i presented above was uninterrupted song playing when navigating to links. you can get the mp3 url of the song you want to add to the player/playlist and append a new song to the playlist with the said url. You can use jquery. ex: var playerName = $('#myPlaylist'); //playlist id at the bottom of the page var clickedItemUrl = $(this).attr('data-src'); //individual song you want to add to the playlist $(playerName).append('<li> <a href="#" data-src="'+clickedItemUrl+'">NEW SONG</li>'); Expand @fiatLife machan no, still that's not the problem... Here's a picture of what im trying to do.... as you can see, i want to take these song URL's to the 'Add to Playlist' button so how to get these songs URL's to the 'add to playlist' button is what I want to do.. so that when the user clicks the button, those songs will be added to the playlist... Quote Link to comment Share on other sites More sharing options...
fiatLife Posted December 4, 2016 Share Posted December 4, 2016 (edited) I think you should contact Cue wordpress plugin machan, i even searched but couldnt find anything relating to getting the url of the song in the Cue documentation Edited December 4, 2016 by fiatLife Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 4, 2016 Author Share Posted December 4, 2016 On 12/4/2016 at 1:26 AM, fiatLife said: I think you should contact Cue wordpress plugin machan, i even searched but couldnt find anything relating to getting the url of the song in the Cue documentation Expand oh ok thanks machan Quote Link to comment Share on other sites More sharing options...
Pericles Posted December 12, 2016 Share Posted December 12, 2016 On 11/24/2016 at 7:19 PM, Kavvz said: lol! And your friend (that Wills girl ) popped up outta nowhere and went viral with a collaboration with Iraj W too huh>? What Interesting times we live in! ( Whatever said and done, whether its in good taste or not, Iraj W. certainly knows how to get out and get noticed! ) Expand I don't know Miss Willis (yet). Shot her a few times over the years, but no personal conversations. Quote Link to comment Share on other sites More sharing options...
Kavvz Posted December 12, 2016 Share Posted December 12, 2016 On 12/12/2016 at 6:59 AM, Pericles said: I don't know Miss Willis (yet). Shot her a few times over the years, but no personal conversations. Expand Ah! I see. For some reason or the other I thought you knew each other outside of work etc. -My apologies for simply assuming. Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 19, 2016 Author Share Posted December 19, 2016 Hi All.. need help again. I added a new page for Tutors in the site (Piano, Guitar, Vocal Classes). So I have used a plugin called 'Search and Filter' which are checkbox selection- so that people can chose what are the specific tutors/classes they are looking for.. However after installing the plugin, many checkboxes from other different pages also has been added. (Eg: Checkboxes of the many genre's I have added to the Artists page also gets displayed in this tutors page. So not only the tutors, the tags I have used to display artists also get listed in the tutors page) So, does anyone know how to show only the tags I want, in this tutors page? Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted December 22, 2016 Author Share Posted December 22, 2016 so did a video interview with Natasha rathnayake and shot 10 questions which she answers in this video below Here's to the Natasha fans @Kavvz Quote Link to comment Share on other sites More sharing options...
Kavvz Posted December 22, 2016 Share Posted December 22, 2016 (edited) On 12/22/2016 at 11:07 AM, PreseaLover said: so did a video interview with Natasha rathnayake and shot 10 questions which she answers in this video below Here's to the Natasha fans @Kavvz Expand I'm not really a fan of her particular blend of music any more, but I do certainly admire her work ethic and perseverance in an environment that usually isn't too kind to female artistes... Edited December 23, 2016 by Kavvz 1 Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted January 19, 2017 Author Share Posted January 19, 2017 So I've got a problem with bluehost.. recently tried to revamp the page and the theme got messed up so needed to restore it.. however paid a 20$ and got the restoring option however couldnt do it, so contacted bluehost and they said they will do the restoring for me... however for over 4 days over 7 times I have been addressing them the issue over the bluehost live chat and everytime they say they have added to the high priority queue and will solve it so they will restore a backup in few hours, however still the chat guys says the same thing... im clueless as to what to do now... anyone experienced this before?.. in this case what should i do, as they seem to never fix this issue ? Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted February 1, 2017 Author Share Posted February 1, 2017 Previous issues were solved.. got another problem to solve this time When I add ajaxify wordpress plugin and when I set the content that I need to change as the div that has div id – “content”, my other wordpress plugins stop working. Plugins that do not work afterwards are, - - Slider in the home page - - Cue media player plugin - -Opinion Stage poll plugin I even try to reload the javascripts related to Cue media player plugin by inserting them as per below thread. But still no luck. It would be pretty awesome if i can get this sorted. Much appreciated Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted February 6, 2017 Author Share Posted February 6, 2017 So SoundGimmicks is now Revamped with some new features/ Changed UI to take it to the next level of promoting English Music in the South Asian Region. Now we have a SoundGimmicks TOP #10 Chart along with a Voting Option for new releases of artists in the South Asian Region. We have made the voting very simple, all you have to do is to visit the soundgimmicks home page and click on a song you like to vote and you are done. Taking the feedback of you guys, I have also included a PLAYLIST option so now you can add your favourite songs to the playlist and listen while you navigate through different artists pages and have done many changes to the individual artists pages too, few more in the feedback list is yet to be done @fiatLife Soon I'm expanding into the south asian region and will be adding south asian english artists too.. working on that... more feedback form you guys about the revamped site will be highly appreciated 1 Quote Link to comment Share on other sites More sharing options...
fiatLife Posted February 6, 2017 Share Posted February 6, 2017 On 2/6/2017 at 10:29 AM, PreseaLover said: So SoundGimmicks is now Revamped with some new features/ Changed UI to take it to the next level of promoting English Music in the South Asian Region. Now we have a SoundGimmicks TOP #10 Chart along with a Voting Option for new releases of artists in the South Asian Region. We have made the voting very simple, all you have to do is to visit the soundgimmicks home page and click on a song you like to vote and you are done. Taking the feedback of you guys, I have also included a PLAYLIST option so now you can add your favourite songs to the playlist and listen while you navigate through different artists pages and have done many changes to the individual artists pages too, few more in the feedback list is yet to be done @fiatLife Soon I'm expanding into the south asian region and will be adding south asian english artists too.. working on that... more feedback form you guys about the revamped site will be highly appreciated Expand Nice macha, wishing you all the best from the bokka I see some nice changes have done, Change the color of the % in top 10 tracks i was confused there for a bit so only for one song i can vote? not multiple? Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted February 7, 2017 Author Share Posted February 7, 2017 (edited) On 2/6/2017 at 4:24 PM, fiatLife said: Nice macha, wishing you all the best from the bokka I see some nice changes have done, Change the color of the % in top 10 tracks i was confused there for a bit so only for one song i can vote? not multiple? Expand machan can't change the percentage colour, I also tried it.. the voting system is powered by opinion stage ne.. so when i select that colour theme thats the default percentage colour it is giving... and that was the only theme colour that looked matching with the site background colour... and yes that percentage colour is an issue which cannot be fixed :/ and yes you can only vote for one Edited February 7, 2017 by PreseaLover 1 Quote Link to comment Share on other sites More sharing options...
PreseaLover Posted March 17, 2017 Author Share Posted March 17, 2017 Thoughts of selling off SoundGimmicks to anyone who is interested in buying it, as me and my partner both don't have time managing it with our full time jobs... If anyone is interested buying it, you can contact me.. The brand name is built in SL and the south asian countries.. 145 south asian artists are already registered in the site database and all of that will be handed over.. Quote Link to comment Share on other sites More sharing options...
Twin Turbo Posted March 17, 2017 Share Posted March 17, 2017 On 12/3/2016 at 1:04 PM, PreseaLover said: We covered our first event for a Stigmata Concert as a media partner, and shot the following video that displays a special performance with 5 ladies from the soul sounds choir singing along with Stigmata... Here's to all the Rock Music lovers https://www.youtube.com/watch?v=VW5L3TeKuAw&t=6s Expand lovee it,.. :-) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.