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 !
Hello. Thanks for the warm comments and the 5 stars rating!
1. There is the docs of the slider https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html , you can use “dots: false” in the “Slider option” eg
{
margin: 20,
dots: false,
responsiveClass:true,
responsive:{
0:{
items: 2
},
543:{
items: 3
}
}
}
2. You can save these code(copy from template-widget.php) to template-widget-nosidebar.php
<?php
/**
* Template Name: Page::Widget no sidebar
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header(); ?>
<?php do_action( 'ff_before_page_top' ); ?>
<?php dynamic_sidebar( 'page-topbar' ); ?>
<?php do_action( 'ff_after_page_top' ); ?>
<?php do_action( 'ff_before_page_content' ); ?>
<?php do_action( 'ff_before_page_left' ); ?>
<?php dynamic_sidebar( 'page-content' ); ?>
<?php do_action( 'ff_after_page_left' ); ?>
<?php do_action( 'ff_after_page_content' ); ?>
<?php get_footer(); ?>
and edit a page and select this tempate.
3. One idea is use a option padding. https://owlcarousel2.github.io/OwlCarousel2/demos/stagepadding.html
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 
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 
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
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
So you do not want put audio on track post?
If I am going to utulizar audio, what I want is to upload news to part of the audio, because the template I will use specifically in online radio, where I will use the main audio of my link in my URL port and that is the page type magazine, as is the template is excellent but I want to upload news of artistic farandulas and shows
If I am going to utulizar audio, what I want is to upload news to part of the audio, because the template I will use specifically in online radio, where I will use the main audio of my link in my URL port and that is the page type magazine, as is the template is excellent but I want to upload news of artistic farandulas and shows
You can post news on the post type or remove the play button on the track post to make it more magazine look
When I publish news, I do not see the images featured on the page
This theme does not insert the featured image to page content. you can insert the image in the content editor. Thanks
Waoo I will not be able to do what I want with this template, I’ll have to find another option
Another option is active the child theme, copy the templates/content-loop.php to child theme, on the line 35, add the_post_thumbnail();
ok
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”
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
Add slider = > true in the args parameter.
it this => <?php $ids = apply_filters( ‘ff_user_following’, $user->ID ); $ids[] = $user->ID; i want to add the follower post on the home page for each user they follow but for this, it show everything even do yours, i don’t want it to be like this 2 what do have to do to make it slide not SCROLL
$arg = array(
'title' => __('Stream', 'pulsetheme'),
'post_type' => array('track', 'music', 'product'),
'posts_per_page' => 15,
'orderby' => 'date',
'display' => 'item-grid',
'column' => 5,
'author__in' => $ids,
'arg' => array(
'author__in' => $ids
),
'more' => 'scroll',
'tpl' => 'templates/loop/list-music.php'
);
$arg = apply_filters('ff_user_stream_query_filter', $arg);
?>
the_widget( 'post_widget', $arg, array(
'widget_id' => 'post_widget_stream',
'before_widget' => ' ',
'after_widget' => ' ',
)
);
thanks
You can copy these code to template-widget-2.php
<?php
/**
* Template Name: Page::Widget 2
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header(); ?>
<?php do_action( 'ff_before_page_top' ); ?>
<?php dynamic_sidebar( 'page-topbar' ); ?>
<?php do_action( 'ff_after_page_top' ); ?>
<?php do_action( 'ff_before_page_content' ); ?>
<?php do_action( 'ff_before_page_left' ); ?>
<?php dynamic_sidebar( 'page-content' ); ?>
<?php
if( is_user_logged_in() ){
$user_id = get_current_user_id();
$ids = apply_filters( 'ff_user_following', $user_id );
$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,
'slider' => 'true',
'slider_option' => '{
margin: 20,
responsiveClass:true,
responsive:{
0:{
items: 2
},
543:{
items: 3
}
}
}',
'tpl' => 'templates/loop/list-music.php'
);
the_widget( 'post_widget', $arg, array(
'widget_id' => 'post_widget_stream',
'before_widget' => '<div id="post-widget-user-stream">',
'after_widget' => '</div>',
)
);
}
?>
<?php do_action( 'ff_after_page_left' ); ?>
<?php do_action( 'ff_before_page_right' ); ?>
<?php dynamic_sidebar( 'page-sidebar' ); ?>
<?php do_action( 'ff_after_page_right' ); ?>
<?php do_action( 'ff_after_page_content' ); ?>
<?php get_footer(); ?>
okaaaaay thanks it work great
one questions 1 why when you follow a user and u unfollow this user you still have it on your followers page? can you tell me what i have to do to fix it.
The last update fixed this issue. You can download now.
oh okay
i want to know if you can provide me a code where i can create, is it possible to upload full music albums
2 on the music page what we have for playlist can you provide me a code where i can make each track show with they own logo i mean pic
3 what i can use to make the track poster come more big
4 when you think you will fix the categories issue we have over 2 years
5 do you have any ideal what code we can use to create a Stats, it can use for each track it can show Plays, Likes, Reposts, Comments, Downloads
6 can you provide me please Recently played code for this themes.
7 what can i do to add on Overview does feature => Recently played, track you Likes, Playlists each user have been create, Following
8 what do i have to do to create a refresh follower after you’v done follow someone
9 if i want to create a stream page for example you upload 5 new music and it gotta say Flatfull posted a track Posted 3 days ago Ana posted track Posted 1 days ago because i follow you
1. no full albums upload function
2. You can go to admin panel to set the featured image for a playlist
3. If you mean the track detail page. you can copy the templates/single-track/header.php to child theme, change the ‘w’ class to ‘w-lg’
4. What is the category issue
5. The data stored, you need do some customize work
6. No recently data stored. so no way to get it.
7,8,9 No such features in this theme.
Thanks
i want to update my theme but i already change a lot of stuff on my website what can do to update it with out lost all of them
Why not put the changes on the child theme. the child theme is for customize.
You need compare the files which changed and which not.
yes i did it work thanks
what you think on the next updates you will do to give us access to upload albums it will be great
hi Flatfull i see you provide this code to PURCHASE you said You can try hook on the ended event. assets/js/player.js player.$node.on(‘ended’, function(e){ //get the data from same genre and play it. });
when i check on my i see
event on set track
// event on play
// event on pause with one of them please
Will you be replacing or tell me what i can do to replace Soundcloud to Mixcloud since Soundcloud doesn’t allow API signups anymore? Thanks!
You can add ended event: player.$node.on(‘ended’, function(e){ //get the data from same genre and play it. });
You can use https://hearthis.at/ .
yes i do it but i fill like it not working
what you think on the next updates you will do to give us access to upload albums it will be great
Do you mean the back-end or the front-end
back-end but both of them will be create because sometimes if the Artist want to post they album in or you can provide me the code i will do it
thanks
what code i can use when you reload the home page to keep it play
event on play player.$node.on(‘ended’, function(e){ //get the data from same genre and play it. $(’.app-body video, .app-body audio’).each(function() { $(this)[0].pause(); }); });
event on pause
player.$node.on('pause', function(e){
updateDisplay();
});
player.$node.on('ended', function(e){
});
player.$node.on(‘ended’, function(e){ //get the data from same genre and play it. });
tell me where can i put this code because i keep trying it, it not working
The ended event not fired?
bro i don’t see none of what you told me please help me fix it out
(function ($) { “use strict”;
if($('.playlist').length == 0) return;
var player;
if( mep.mepPlaylistTracks.length > 0 ){
initPlayer();
}
// init player
function initPlayer(){
$('.app-player').removeClass('hide');
$('#app').removeClass('hide-player');
}
var playlist = $( '.playlist' ).mepPlaylist({
audioHeight: '40',
audioWidth: '100%',
videoHeight: '40',
videoWidth: '100%',
audioVolume: 'vertical',
mepPlaylistLoop: true,
alwaysShowControls: true,
mepSkin: 'mejs-audio',
mepResponsiveProgress: true,
mepAutoPlay: false,
mepSelectors: {
playlist: '.playlist',
track: '.track',
tracklist: '.tracks'
},
features: [
//'meplike',
'mepartwork',
'mepcurrentdetails',
'mepplaylist',
'mephistory',
'mepprevioustrack',
'playpause',
'mepnexttrack',
'progress',
'current',
'duration',
'volume',
'mepicons',
'meprepeat',
'mepshuffle',
'mepsource',
'mepbuffering',
'meptracklist',
'mepplaylisttoggle',
'youtube'
],
mepPlaylistTracks: mep.mepPlaylistTracks
});
// get player, then you can use the player.mepAdd(), player.mepRemove(), player.mepSelect()
player = playlist.find('audio, video')[0].player;
// event on like btn
player.$node.on('like.mep', function(e, trackid){
$('[track-id='trackid']').toggleClass('is-like');
});
// event on set track
var timeoutID = null;
player.$node.on( 'setTrack.mep', function( e, track, player ) {
playlist.find('audio, video').attr('title', track.title);
clearTimeout(timeoutID);
timeoutID = setTimeout(function() { countPlay(); }, 10000);
});
// event on play
player.$node.on('play', function(e){
updateDisplay();
//stop play other media
$('.app-body video, .app-body audio').each(function() {
$(this)[0].pause();
});
});
// event on pause
player.$node.on('pause', function(e){
updateDisplay();
});
player.$node.on('ended', function(e){
});
// update when pjax end
$(document).on('pjaxEnd', function() {
updateDisplay();
});
// simulate the play btn
$(document).on('click.btn', '.btn-playpause, .btn-queque', function(e){
e.stopPropagation();
var self = $(this),
item = $(this).closest('.item'),
id = item.attr('data-id'),
type = item.data('user-id') ? 'user' : 'post',
play = true;
});
if(!player){
getItem(id, type).done(function(obj){
if(obj.status == 'success'){
mep.mepPlaylistTracks = obj.tracks;
initPlayer();
player && player.mepSelect(0, true);
}
});
return;
}
if(self.is('.btn-queque')){
play = false;
self.parent().dropdown('toggle');
}
if( self.hasClass('is-playing') ){
self.removeClass('is-playing');
player.pause();
}else{
var index = player.find(id);
if( index !== -1){
var track = player.mepGetCurrentTrack();
if(track && track.id id && !play) return;
player.mepSelect(index, true);
}else{
getItem(id, type).done(function(obj){
if(obj.status 'success'){
addToPlay(obj.tracks, play);
}
});
}
}
function countPlay(){
var track = player.mepGetCurrentTrack();
$.ajax({
type : "post",
dataType : "json",
url : ajax.ajax_url,
data : {action: "ajax_post_views", post_id : track.id, nonce: ajax.nonce},
success: function(obj) {
if(obj.status == 'success'){
var id = '[data-id="'track.id'"]';
$(id).find('.views-count').html(obj.count);
}
}
});
}
function getItem(id, type){
return $.ajax({
type : "post",
dataType : "json",
url : ajax.ajax_url,
data : {action: "ajax_music", id : id, type: type, nonce: ajax.nonce}
});
}
function addToPlay(obj, play){
if(obj.length == 1){
player.mepAdd( obj[0], play );
}else if(obj.length > 1){
if(play){
player.options.mepPlaylistTracks = obj;
player.updatemepList();
player.mepSelect(0, true);
}else{
for(var i=0; i<obj.length; i++){
player.mepAdd( obj[i] );
}
}
}
}
function updateDisplay(){
$('[data-id]').removeClass('active').find('.btn-playpause').removeClass('is-playing').parent().removeClass('active');
var track = player.mepGetCurrentTrack();
if(!track || !track.id) return;
var id = '[data-id="'track.id'"]';
if(track.parent){
id = ', [data-id="'+track.parent'"]';
}
var item = $(id);
if( player.media.paused ){
item.removeClass('active').find('.btn-playpause').removeClass('is-playing').parent().removeClass('active');
}else{
item.addClass('active').find('.btn-playpause').addClass('is-playing').parent().addClass('active');
}
}
})(jQuery);
any answer
You need put your own code in the ended event to get the next play data.
below is the js code to get current page next play data.
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;
}
});
});
thanks a lot it work
Is continually music possible? when going to another page the music stops can you provide me something to make it work please
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
Hello 
I want to use the thema to upload recent novelties but the highlighted images do not come out on the page, only the texts come out, I already resolved to play the music that I had doubts because that side is fine. I need help for that case, but use a page creator. Thank you
highlighted images? Do you mean the track image? Go to the “Tracks > Add new”, add “Featured image” on the right side.
No, el thema solo lo voy a utilizar por el momento para transmitir una radio Online, subir algunas noticias de farándulas y espectáculos y de paso promocionar artista en exclusivo, pero e subido algunas noticias pero no me salen las imágenes en la pagina
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.
$content = ob_get_clean();
$content = apply_filters('ff_search_result_filter', $content, $s);
return $content;
Will fix in next update.
1) One more problem:
doing that would load content-none template for taxonomy in search results.
since, you changed to following in this version
if(!$have_post && !$have_user){
get_template_part( 'templates/content', 'none' );
}
It should be following (like earlier versions but with return to else part), Please correct, If I am wrong.
$query = new WP_Query( apply_filters('ff_search_track_filter', $args) );
if($have_post && $have_user){
$col = 'col-md-6';
}
$content = ob_get_clean();
$content = apply_filters('ff_search_result_filter', $content, $s);
if (empty($content)) {
get_template_part('templates/content', 'none');
} else {
return '<div class="row">' . sprintf($content, $col, $col) . '</div>';
}
}
2) I need to add title over search results,
Would appreciate if you could add a hook or filter for title,
so that, I patch to parent theme could be avoided and i can add this title via child theme.
So, I have added like following in class-ff-track.php
if ( $query->have_posts() ) {
$have_post = true;
$post_type = 'Music';
echo '<div class="%s"><div class="h5 m-t-sm">'.$post_type.'</div></div>';
and similarly for users,
if ( $query->get_results() ) {
$have_user = true;
$post_type = 'Artist or User';
echo '<div class="%s"><div class="h5 m-t-sm">'.$post_type.'</div></div>';
include(locate_template('templates/loop/list-user.php'));
}
Looking forward to hear from you.
You are right.
ob_start();
$have_post = $have_user = false;
$item_class = 'col-xs-12';
$list_attr = '';
$media_class = '';
$media_size = '';
$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;
do_action('ff_before_search_result_user', $s);
include(locate_template('templates/loop/list-user.php'));
}
$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;
do_action('ff_before_search_result_track', $s);
include(locate_template('templates/loop/list-music.php'));
}
$content = ob_get_clean();
$content = apply_filters('ff_search_result_filter', $content, $s);
if( empty($content) ){
get_template_part( 'templates/content', 'none' );
}
return $content;
Could you please give an example of using ff_before_search_result_user and ff_before_search_result_track hook. as you are using $s as parameter here,
add_action( 'ff_before_search_result_user', 'before_search_result_user' );
function before_search_result_user($s){
echo 'Search user: '.$s;
}
Thanks, One more thing, Since, you have removed $col, case now, and added $item_class = ‘col-xs-12’; How would I achieve sarch results like before. if both have_post and have_user are true use ‘col-md-6’ in case of desktop site?
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 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;
do_action('ff_before_search_result_user', $s);
echo '<div class="%s">';
include(locate_template('templates/loop/list-user.php'));
echo '</div>';
}
$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;
do_action('ff_before_search_result_track', $s);
echo '<div class="%s">';
include(locate_template('templates/loop/list-music.php'));
echo '</div>';
}
if ($have_post && $have_user){
$col = 'col-md-6';
}
$content = ob_get_clean();
$content = apply_filters('ff_search_result_filter', $content, $s);
if( empty($content) ){
$content = get_template_part( 'templates/content', 'none' );
}else{
$content = '<div class="row">'.str_replace('%s', $col, $content).'</div>';
}
return $content;
1) There is one more issue
in the following segment
if( empty($content) ){
$content = get_template_part( 'templates/content', 'none' );
}
- get_template_part should be handled in ob_start() and ob_end_clean() phpstorm is generating error about void results being used came across this article
https://stackoverflow.com/questions/5817726/wordpress-save-get-template-part-to-variable
2) Also previously music was on left side, and user on right side.
usual search results are 1 user and 10 songs of that user, in that case, in search results, 1 value of track in first half and 10 songs half looks odd.
in my opinion, in case of both tracks and users, in search results
tracks should be in left column and users should be in right column.
another option is to make a theme setting for user to decide, if they want one column search results or two column search results.
3) another option could be to have tabbed search results. like two tabs on left or top to filter out artists as well as tracks. (just an idea)
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;
do_action('ff_before_search_result_track', $s);
echo '<div class="%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;
do_action('ff_before_search_result_user', $s);
echo '<div class="%s">';
include(locate_template('templates/loop/list-user.php'));
echo '</div>';
}
if ($have_post && $have_user){
$col = '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;
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
Use the Chrome developer tool to see if the stream file is loaded.
Failed to set referrer policy: The value ’’ is not one of ‘no-referrer’, ‘no-referrer-when-downgrade’, ‘origin’, ‘origin-when-cross-origin’, ‘same-origin’, ‘strict-origin’, ‘strict-origin-when-cross-origin’, or ‘unsafe-url’. The referrer policy has been left unchanged.
Open a track page and the Chrome developer tool. click the play button to see if there any error in the “Network” tab.
OR go to the WordPress backend and copy the track stream url, open in the Chrome new tab, see if it can playable.
Is not working!!! I need support
j @ mediaelement-and-player.min.js?ver=4.2.6-78496d1:12 m.mediaElement.(anonymous function) @ mediaelement-and-player.min.js?ver=4.2.6-78496d1:12 value @ mediaelement-and-player.min.js?ver=4.2.6-78496d1:12 value @ mediaelement-and-player.min.js?ver=4.2.6-78496d1:12 (anonymous) @ mediaelement-and-player.min.js?ver=4.2.6-78496d1:12
What’s your site domain, l need to check the error on the live site
Can not open your site.
This site can’t be reached elconquistadorsur.cl took too long to respond.
Check again… I was trying to repair the problem but it persists
You are using the http://5.9.65.9:8065/stream.aac media to play in the player, and it can not be played. use a mp3 file or other playable stream.
https://github.com/mediaelement/mediaelement/issues/2136How is it possible? streaming if it worked but now it stopped working. I need the service to be fixed
I mean the application stopped working
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
1. Following user’s tracks will show on your profile page. check the templates/single-user/dashboard.php
2. User profile is below the User name.
3. I will look into this.
Thanks
for the 1 question i need it for the home page not on the user profile 2 i mean biography, i want to add a button for it after the following button, i want to know what code i do have to use to make it happen,
1. The code is on the “templates/single-user/dashboard.php” line 45-75. you can add this code in the templates/template-widget.php line 23 in your child theme.
2. The user description is tempates/single-user/bio.php.
okay thanks
one question please ” When you follow a user. their stream will show on your profile page. Where i can find this code because i want it to show up on the home page
The code is on the “templates/single-user/dashboard.php” line 45-75. you can add this code in the templates/template-widget.php
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