Discussion on pulse - Music, Audio & Radio WordPress Theme

Discussion on pulse - Music, Audio & Radio WordPress Theme

Cart 485 sales
Well Documented

Flatfull supports this item

Supported

1011 comments found.

Hi,

1. how to create slider of artists on homepage?

Go to “Appearance > Widgets” to add “User widgets”

Thank you – works perfectly on desktop. On mobile it’s not showing correctly.

https://snipboard.io/vEaqG3.jpg

These are the slider options I have:

{ items: 4 ,loop: true ,autoplay: true ,nav: true ,animateOut: ‘fadeOut’ ,stagePadding: 50 ,margin: 25 }

1. how can I fix that 2. how can I remove ‘follow’ on mobile?

Hello, I couldn’t find to increase the numbers or add pages on this page, I want to add 250 pieces of music here, but I can’t find the area for this, paging can be 20 on each page

https://enderguneymusic.com/nocopyright/

It’s in the templates/template-charts.php ‘posts_per_page’ => 20,

Greetings, Why does it keep shifting from Menu on the Side Menu to Menu Up top? What do I do?

Go to admin > pulsetheme on the basic tab, choose “Layout” for all the site.

How do I get shoutcast to play, where do I go? Because the normal area doesn’t seem to be available

I figuted it out

hi, the photos look poor quality, but we are uploading in high resolution.

https://www.img.gen.tr/image/ekran-alintisi.jWs

Go to “Settings > Media” to set the Thumbnail size to a big number

I did 1000×1000 and still hasn’t improved, I want you to find a solution

https://www.img.gen.tr/image/jcx

New big size only for new upload picture. you can use this plugin to regenerate the old pictures. https://wordpress.org/plugins/regenerate-thumbnails/

Hello, there is space in the header area, and it is not visible even though I added the logo

https://www.img.gen.tr/image/jWH

Go to settings>general to unselect “Show admin bar for admin user”

Hello, I would like to buy your theme but I have some questions…

Is it possible integrate mixcloud and icecast v2 on the theme?

I’d like to use it for a radio station.

This theme can play the icecast radio url. but not Mixcloud. Thanks

Hello

How to create two different artists page with two different set of users.? I need to create similar layout of artists page. but one will have a set of different artists (users) and another will have different artists(users).

Now all users are getting repeated on both artists pages. I need to filter certain users for one page and another set for another page.

Can you pls help me with any custom code to get this feature?

Copy and rename the templates/template-artists.php

I purchased the theme.

I would like to know how to show the playlist(album) in the artist page below the popular tracks. I am able to rename the playlist menu as album and show it. But our requirement to show below the popular tracks.

Right now the Stream section shows all tracks. Can we show all album under Stream instead all tracks?

Is there any custom code I can add to show like that?

Add code in the “templates/single-user/dashboard.php”, <div id="user-playlist" class="user-playlist"> <?php global $current_user; $user = get_queried_object(); $post_status = array('publish'); if($current_user && $current_user->ID == $user->ID){ $post_status = array('private', 'pending', 'publish'); } $arg = array( 'post_type' => 'music', 'post_status' => $post_status, 'posts_per_page' => 8, 'display' => 'item-grid', 'column' => 4, 'author' => $user->ID, 'more' => 'pager', 'tpl' => 'templates/loop/list-music.php' ); the_widget( 'post_widget', apply_filters('ff_user_playlist_query_filter', $arg) ); ?> </div>

1. You can add other element on the templates/single-user/dashboard.php 2. The cart button is on the thumbnail. if you want to change it. change the templates/loop/list-music.php.

Thanks

Thank you

1. Please assist with the code to add to templates/single-user/dashboard.php

Hi Flatfull,

I created a music album consisting of several authors.. Is it possible to add the name of the author under his title?

https://drive.google.com/file/d/1Hh3nM8rc7TIyIhoY_jFQtSyBDkoE3fws/view?usp=sharing https://drive.google.com/file/d/1E3pbWJpSZ1VzZ2kmQBNAAGpUlUqXkws8/view?usp=sharing

You need custom code to get the authors from the album tracks.

The solution is done..Thanks

Why no updates yet? Since 2019

No new update for this theme, The Bepop theme using the Gutenberg to build the page and content. Thanks

Any elementor support?

No, we use gutenberg blocks and our custom blocks, so we can control the speed and ajax things. Thanks

Olá, eu preciso de ajuda, sobre como criar painel da artistas. Não consigo criar. Comprei o tema a dias.

In the download, there is a readme.md file you can get started. Thanks

Já consegui criar o menu de artistas sem vossas ajuda, voçes não ajudam em nada. Tecnicamente não adianta pedir vossa ajuda, porque as vossas respostas são inútil.

I have already managed to create the artists menu without your help, you are not here at all. Technically, there is no point in asking for your help, because your answers are useless.

how do i turn off comments

When create new post or edit post, there is a “Allow comments” in the “Discussion” meta box.

this is my website bonflo.com for some reason if user is not signed in when they try to like or add to playlist they get directed to a different page ? need help asap !

Currently there is no option for this top ad. use custom css to change the margin.

what would be an example of the custom css

you can use

.widget{margin-bottom: 1rem}

hi heres my website bonflo.com … for some reason when a visitors that is not loggin tries to like a music or tries to add to playlist he gets redirected to another page … please have a look.

You need config the login page. go to WordPress admin “Pulsetheme” > Page to config a login page.

Hi By executing code player.js, to auto-play the next track, everything seems fine but playlist doesn’t work properly and it repeats the first track, What should I do to solve the problem?

player.$node.on(‘ended’, function(e){ // find next id in this page and play it var tracks = player.options.mepPlaylistTracks; $(‘[data-id]’).each(function(){ var id = $(this).attr(‘data-id’); var index = player.find(id); if( index == -1){ $(this).find(’.btn-playpause’).trigger(‘click’); return false; } }); });

Does all the tracks in the playlist added to player?

Yes, they are added, but when the playlist is playing, It is only the first song that played repeatedly!

hmm, I think it’s the var index = player.find(id); not working for playlist. the playlist id never goes into the player. so it will keep look for it. use these code

player.$node.on('ended', function(e){
      var tracks = player.options.mepPlaylistTracks;
      var playlists = $.map(tracks, function( val, i ) {
        return parseInt(val.parent);
      });
      $('[data-id]').each(function(){
        var id = $(this).attr('data-id');
        var index = player.find(id);
        if( index == -1 && !$.inArray(id, playlists) ){
          $(this).find('.btn-playpause').trigger('click');
          return false;
        }
      });
});

hi , when i put this code to player.js , for auto play next track , everything is fine but playlist work bad and play first track in repeat , What should I do to solve the problem?

player.$node.on(‘ended’, function(e){ // find next id in this page and play it var tracks = player.options.mepPlaylistTracks; $(‘[data-id]’).each(function(){ var id = $(this).attr(‘data-id’); var index = player.find(id); if( index == -1){ $(this).find(’.btn-playpause’).trigger(‘click’); return false; } }); });

Use an purchased account to post questions. Thanks

1. Please assist with the whatsapp share code to be entered templates/modal/share.php

2. Can I duplicate Playlists to have album as well as a separate feature and if yes, please help me

3. Can we modify the artist dashboard to split between products and tracks and playlists? It looks clustered

Sorry. confused with the Bepop theme. This theme does not have history option. but with history player.

How does that work?

When user played a song, the song will store to local storage in user browser, when the user return to the site. the player will load the data.

Also sent you an email, waiting on a reply

No big update. only bug fixes for this theme. Thanks

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey