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.

The new update have poblems importing the dummy-data is failed

The new updates have no affect on the importing. When you import the dummy-data, ignore the media download.

Hello ! So sorry in advance for my english (I am french) first of all : amazing job with this theme… I read some comments and they do not reflect how great your work is.

I spend a couple months working of my site and even if it’s a little difficult to understand at first, once I got it it was so great to build pages with this theme, just wanted to say : THANK YOU.

(My questions are all about the widget template page)

1 – I use a lot of post-widgets on my site (verry usefull btw) and I wanted to hide the little dots bellow every sliders… how can I do that ? (any css to help me ?)

2 – Can I add some css to hide the right sidebar on the widget template page ?

3 – Most of the apps have sliders, Netflix, spotify etc… and I love the idea. But I have a little problem, if I hide the little dots how can I make the right side of the slider shows a little bit of the next post ? Because on every apps/website they don’t have little dots underneath… they show a little piece of the next post on the right (I hope it’s not too abstract)

Have a good day and thanks again for your amazing work !

Hi again, Thanks for the quick answer and you deserved 5 stars ! I recommanded your work to everyone who is working on wordpress.

About my questions…

1 – dots:false works perfectly !

2 – I take a little time to understand what you meant, but I think I got it… I created a new template and added via ftp,

3 – I used “Stage:padding” : PERFECT !!!

I’m so happy I was searching for days about that ! THANKS :D

Last question (I’m sorry for bothering you, but I’m sure you have the answer) :

4 – I want to hide the text bellow one slider : should I add something in the slider options ? Or in the custom css section ? If you don’t know it’s okay you helped me so much already.

Have a nice day and thank you again :D

4. Edit that widget, in the “Custom css” field, input “owl-hide-text” classname. go to “Pulsetheme > Customize”, in the “Inline css” field, add ”.owl-hide-text .item-info{display: none}” . You too:)

Tested : PERFECT ! Thanks a lot !!

Do you have any documentation because i cant import any theme data

http://flatfull.com/wp/pulse/documentation/ Does it show any error when you import theme data?

I can use the template type magazine, I bought it for that purpose since I looked for templates that do not drop the audio when I enter other category or pages within it, otherwise it would not work

how can I activate the secondary theme

Upload the pusletheme-child-theme to WordPress admin, and activate it. Thanks

ok

My toolbar will not go away. Aesthetically speaking, its makes my site look horrible. I’ve selected “do not show toolbar” in the profile menu, but even if I got to the website in a different browser, it still shows (not logged in). Please advise. Thanks! playmii.tourmie.com

In the admin panel, go to “pulsetheme/advanced”, select “Hide admin bar on front-end”

1. Bug Report:
If you follow, then unfollow a normal user,
your name is not removed even on page reload.
For instance, I unfollowed this normal user
http://flatfull.com/wp/pulse/user/marian-hristov/followers/ My name is still showing up as a follower on this user’s follower tab .

2. Its showing my user into my profile’s following tab ? http://flatfull.com/wp/pulse/user/vineettalwar007/following/
Which is strange.

I am looking into it. Thanks

1. Fixed. you can download now. 2 user can not follow himself. bug fixed.

Hello, I really want this theme but I need also to sell videos and photos (or simply offer their downloads for monthly subscribers). Is this possible? Thank you!

This theme have an option “Download only for registers”, you can install other membership plugin to let the user pay the “monthly subscribers”. Thanks

And can I sell Video and Photo downloads instead of audio? That was the main question actually… Thanks

This theme only for music. Thanks

hi, i have some issue when i put it on the template/template-widget_php, what do i have to use to make it slide

If the current page have playable track. it will continually play it.

what i can do to add the playback tack on a page

The playable track is auto generated by the page. eg on the track category page, the tracks have same category.

Buenas Tardes

If you want to put the posts on the homepage with thumbnail. go to “Appearance > widget”, add a “Post widget” and select the post type to show and “list-post.php” template.

ok

Puedo utilizar la plantilla tipo revista, la compré con ese objetivo ya que e buscado plantillas que no se me caiga el audio cuando entro a otras categoría o paginas dentro de la misma, de lo contrario no me serviría

Hey flatfull,
In this new update, you have removed filter ff_search_result_filter from class-ff-track.php I am using that, to extend search to taxonomies as you described earlier in one of your posts. Now, it stopped working.
could you please add that again.

1) Thanks for the update.
One more problem, if I am passing text with html tag h5 wrapped to ff_before_search_result_user and ff_before_search_result_track as you suggested above. there is alignment issues.
Following is the solution I propose:
if we switch the position of

do_action('ff_before_search_result_user', $s);
        class="%s">';
and make it
           class="%s">';
 do_action('ff_before_search_result_user', $s);

and

            class="%s">';
do_action('ff_before_search_result_user', $s);

Then, the alignment issues shall be solved and users can use html tags in ff_before_search_result_user and ff_before_search_result_track hooks.

2) what do you think, about giving, user option whether they wanna keep two column or one column results.
3) what do you think about my third point in above reply. tabbed search results probably ? When, search results are extended to taxonomy could be added to tabs as well

ob_start();

        $have_post = $have_user = false;
        $col = 'col-md-12';
        $item_class = 'col-xs-12';
        $list_attr = '';
        $media_class = '';
        $media_size = '';

        $list_class = 'item-list item-list-sm track-search-results';
        $args = array(
            'post_type' => array('track', 'music', 'product'),
            'post_status' => 'publish',
            'posts_per_page' => -1,
            's' => $s
        );
        $query = new WP_Query( apply_filters('ff_search_track_filter', $args) );
        if ( $query->have_posts() ) {
            $have_post = true;
            echo '<div class="%s">';
            do_action('ff_before_search_result_track', $s);
            include(locate_template('templates/loop/list-music.php'));
            echo '</div>';
        }

        $list_class = 'item-list item-list-sm user-search-results';
        $args = array(
            'search' => '*'.$s.'*'
        );

        $query = new WP_User_Query( apply_filters('ff_search_user_filter', $args) );
        if ( $query->get_results() ) {
            $have_user = true;
            echo '<div class="%s">';
            do_action('ff_before_search_result_user', $s);
            include(locate_template('templates/loop/list-user.php'));
            echo '</div>';
        }

        if ($have_post && $have_user){
            $col = apply_filters('ff_search_result_column_filter', 'col-md-6');
        }

        $content = ob_get_clean();

        $content = apply_filters('ff_search_result_filter', $content, $s);
        if( empty($content) ){
            ob_start();
            get_template_part( 'templates/content', 'none' );
            $content = ob_get_clean();
        }else{
            $content = '<div class="row">'.str_replace('%s', $col, $content).'</div>';
        }
        return $content;

then you can use the filter to change the column class

Sweet thanks. This works.

please can i have blog section on the home page display in different grid style

Yes. you can display blog section in home page, the post widget can have different grid styles.

Thanks

what of changing the pink colour to green

Can put a pre-built css in the back-end.

Hello

i have updated with woocommerce 3.5.7 and wordpress 5.1.1 and i have a problem

tracks are not saved in the product sheets when I save them.

thank you

I am looking into it.

Got this issue and fixed for approval. you can download the latest version later. Thanks

good morning please i want to find if your theme is suitable to register various music artistes and also if they can sell their songs too with this theme

Register user can upload track. but can not sell their songs in this theme. Thanks

Hello, I would like to change the name of the author (Created) by the name of the composer for the music and track part on the front end. if you do not understand my request I can send you an overview by email.

When a user create a Track on the front-end. the author is the user display name, it’s created when user register an account. for the other fields, you can look into the piklist/parts/forms/track.php, you can add/remove field in this file.

the streaming is not working :/ help

http://5.9.65.9:8065/stream.aac I tested on my local server, the pulsetheme player can play this stream. but not stable.

But your server can not play, you can see in Chrome network.

Seems that the http://5.9.65.9:8065/ forbidden your domain.

is blocked because for some reason it is redirected to https://5.9.65.9:8065/stream.aac

I did some test for this stream http://5.9.65.9:8065/stream.aac , if it played on localhost(not public domain), it works fine. When I put it on the http://flatfull.com/wp/pulse, it stop play.

Please contact the server.

Benjynod PURCHASED

you need to go to your Pulse Theme to change it after you should go to your Discover page on edit to change your the color the to bro it will be work fine and everything el.. will work

What’s the point of following a user? Does that do anything? Is there a explore page?

When you follow a user. their stream will show on your profile page.

When you follow a user. their stream will show on your profile page.

Hello, i’m having an issue with making pages “dark app” themed mainly the “discovery” page it keeps reverting back to “white site”

Thanks Aaron

The page template option not saved on new Block Editor(gutenberg) . you can switch to old editor to choose the dark app.

Hi Flatfull, what code do i have to use to show up the user stuff i follow on my home page, 2 i want to add BIO on user profiles after the following button can you provide me this code please, 3 i thing it will be great if you add or prodive user the code we have to user to show the RECENTE PLAY WIDGET

THANKS WAIT FOR your answer bro

hi, i have some issue when i put it on the template/template-widget_php, what do i have to use to make it slide

in the arg parameters. add slider => true

$arg = array(
            'title' => __('Stream', 'pulsetheme'),
            'post_type' => array('track', 'music', 'product'),
            'posts_per_page' => 8,
            'orderby'  => 'date',
            'display'  => 'item-grid',
            'column'   => 4,
            'author__in' => $ids,
            'arg' => array(
                'author__in' => $ids
            ),
            'more'     => 'scroll',
            'slider' => true,
            'tpl' => 'templates/loop/list-music.php'
        );

it not working when i used it, it make everything i have on my home page not show up.

please provide me something

HI! i have a problem with the search widget, i try to add the search in the top bar. it doesnt work. so when you write something in and click search nothing. but in the menu, it works. can you help me? because i would like to add it in my top bar, on mobile phone the menu is hidden. so in top bar, its gonna make sense.

wait for you.

You need add “search-modal” class on the search link.

I dont see Search link, i see only TITLE option. i use widget to add it.

Got this error. Quick fix: assets/js/search.js line 46, $.pjax.submit(e, $(’#view’), {fragment: ’#view’, timeout: 6000}); to $.pjax.submit(e, ’#view’, {fragment: ’#view’, timeout: 6000});

Will fix in next update. 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