2067 comments found.
Hello Flatfull,
I want to use revolution slider like federateddigital has explained here http://themeforest.net/item/musik-responsive-music-wordpress-theme/12127123/comments?page=47 I tried building the post based slider but couldnt achieve the desired result. I am new to revolution slider, can you please help me and elaborate the prosess please.If you want to use other plugin which not just contents(eg, need load other js or css), you need disable ajax loading on this page. choose the “Default Template” for page template.
I want to show musics in slider revolution with a layer of play button which shows on hover like the default music file presentation in the theme, which when clicked triggers the bottom player to play the music.
I do not have the revolution slider, you can try federateddigital’s way.
When I play an album it adds all of the music to the playlist but then it plays the last one. How can I change it so that it starts playing the first music in the album?
Found some other comment about this and it seems the author does not have a solution for it. It’s a bit weird to be able to order the songs in an album but not actually have them play that way. So the audio plays based on the publish date DESC by default (determined by edd). Problem is that unless you upload sequenced audio in reverse order they will play backwards. Here’s what I did. Open wp-content/themes/musiks/inc/edd.php and change line 176 to ‘order’ => ‘ASC’,
Now you can bulk upload files and they will play in the correct order.
Flatfull, could I change line 175 ‘orderby’ => ‘date’, to a variable that would allow the audio to play as it is ordered in the album?
Sort of like ‘orderby’ => ‘playlist_order’,
Did some digging and figured it out. If you set line 175 to ‘orderby’ => ‘post__in’, it will play in the order of the album playlist.
On the Artist detail page how can I only have albums display in the list at the bottom? I don’t want the individual songs to display here. http://flatfull.com/wp/musik/artists/bossr/
<?php while ( have_posts() ) : the_post(); ?> <?php if(!edd_get_bundled_products($post->ID)) continue; ?>
Huge thanks Flatfull! One more question. How would I only show the top 5 most popular?
the_widget(
'music_post_widget',
array(
'count' => 5,
'orderby' => 'meta_value_num',
'type' => 'bundle',
'display' => 'list',
'title' => esc_html__('Albums', 'musik') ,
'filter' => 'download_artist',
'filterid' => $term_id
),
array(
'before_title'=>'<h3 class="m-b">',
'after_title'=>'</h3>'
)
);
Hi, can I add tags ,for all posts types , so when add the same tags on posts or music posts , they take me to the same content and page . ex. I add post with tag ( John ) , then I add music post with the same tag , after that when I click on ( John ) word , it takes me to all stuff ( posts & music …. )
I hope if you give a code to edit , or plugin ..
thank you ..
They are different post type and have different permalink, for post www.domain.com/tag/tagname/ and for music post will be www.domain.com/music/tag/tagname.
Hi, I would like to ask two questions:
1) Is the souncloud embed of the music be identified by the rss (need it for hype machine service)
2) Is it possibile to have a widget for display the posts in home page?
Thanks in advance
1. No identity on soundcloud post in rss. 2. There is a “Recent Posts” widget.
How can I set the soundcloud be visible by the rss (without embed the iframe in the content)? I absolutely need it to work, could you help me please?
Do you want to export the soundcloud fields to RSS, or import the RSS to music posts.
I guess export the soundcloud field to rss; Hype Machine uses the feed to recognize if your latest posts have new tracks or not
Go to “tools > export” choose the “Music”, will export xml with meta_key: soundcloud_trackid.
No, I didn’t explain myself. HypeMachine is a service that check the feed of your site to recognize if there are any new tracks posted (I guess checking if there is a soundcloud embed in your feed).
If I check the feed of my tracks ( http://new.wearegoingsolo.com/feed/?post_type=download ) I’m not able to see any references to the soundcloud_trackid. I’d like to add it to the feed, is it possible to do, even with some coding.
Also http://new.wearegoingsolo.com/feed shows only your articles and not your custom post type, how to fix this too?
function add_custom_fields_to_rss() {
if(get_post_type() == 'download' && $my_meta_value = get_post_meta(get_the_ID(), 'soundcloud_trackid', true)) {
?>
<soundcloud><?php echo $my_meta_value ?></soundcloud>
<?php
}
}
add_action('rss2_item', 'add_custom_fields_to_rss');
and use http://new.wearegoingsolo.com/feed/?post_type=download to get it. (disable the cache on chrome network tab)
Do you think it’s enough to display the id of the song in a soundcloud tag? Also is it possible to merge the feed of the custom post type download with the root of the site ( ./feed )? Cause actually http://new.wearegoingsolo.com/feed/ displays only the feed of the articles
You can also get the soundcloud track url get_post_meta(get_the_ID(), ‘soundcloud_trackurl’, true)
function feed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('post', 'download');
return $qv;
}
add_filter('request', 'feed_request');
I’ve talked to the guys over at Hype Machine and they told me that a SoundCloud API link is required for tracks to be picked up.
If you mean the playable soundcloud api. use code below.
sprintf(‘http://api.soundcloud.com/tracks/%s/stream?client_id=%s', get_post_meta(get_the_ID(), ‘soundcloud_trackid’, true), get_theme_mod( ‘soundcloud-clientid’) );
you mean something like this:
function add_custom_fields_to_rss() {
if(get_post_type() == 'download') {
?>
<soundcloud><?php sprintf(‘http://api.soundcloud.com/tracks/%s/stream?client_id=%s', get_post_meta(get_the_ID(), ‘soundcloud_trackid’, true), get_theme_mod( ‘soundcloud-clientid’) ); ?></soundcloud>
<?php
}
}
add_action('rss2_item', 'add_custom_fields_to_rss');
I guess there is some code error cause the page doesn’t work
use echo
function add_custom_fields_to_rss() {
if(get_post_type() == 'download') {
?>
<soundcloud><?php echo sprintf('http://api.soundcloud.com/tracks/%s/stream?client_id=%s', get_post_meta(get_the_ID(), 'soundcloud_trackid', true), get_theme_mod( 'soundcloud-clientid') ); ?></soundcloud>
<?php
}
}
add_action('rss2_item', 'add_custom_fields_to_rss');
Hello, nice theme and I am keen to buy it however is it possible to allow users to upload/add their own music?
User with “Shop Vendor” role can upload/add their music. http://docs.easydigitaldownloads.com/article/236-shop-user-roles
Thanks
And do you have any plans to integrate this into the core of the theme in the future?
Okay – and will seller be able to upload songs via the front end? Or vi backend
in wp backend.
When I click customize the sidebar appears with no options and the preview area on the right side of the screen is filled with code. the site is stream.thehoodstar.com
Do not active the “Piklist Demos” addon under the “piklist > add-ons”.
thank you my problem was solved. what is the suitable image size for the large logo and small logo? as mine appear extremely small.
You can use a custom css to enlarge the logo size. .header-md .navbar-brand img {max-height: 40px !important;}
How to add Auto play Music to footer player.
User need click the play button to add the music in the player, and will save to history.
Hi dear, magnificent template. Is it ready to be translated?
.pot file ready. Thanks
Could you add selective disabling ajax for pages, such as pages with ‘Gravity Forms’ css tables are broken and it is VERY necessary to disable ajax function only on this page!
You really will save thousands of lives if you do support ‘Gravity Forms’ as it breaks the CSS for ‘Gravity Forms’ and also for ‘Visual Composer’ 
Select “Default template” for page will not loaded by ajax.
Yes i know it, but when you have a music store need to play music on all pages isn’t?
You can copy the template-parts/template-with-player.php and remove the id=”ajax-container” on this page, will get the player with no ajax.
thanks, but i’m too dumb for this 
Removed all (id=”ajax-container”) and nothing. Please Help me.
sorry! wrks fine 
Is it possible to add a plugin like Memberpress or Woocommerce Memberships and have just one user login? I need to protect the EDD audio preview files with a monthly membership. So basically the audio player would only work for those with a monthly membership. Thank you. Love the theme!
UPDATE: I ended up using Paid Memberships Pro and it integrated perfectly with EDD. PMP has php code that allows you to wrap around stuff to hide it for non-subscribers. I wrapped the code around the player in player.php and now audio will only play for subscribers. No need to reply.
I purchased this theme – I am trying to run in localhost i am getting error – Fatal error: Call to undefined function get_header() in C:\xampp\htdocs\musiks\musiks1\index.php on line 14 Can you tell me solution of it
reinstall the wordpress.
Hello I have the theme newly installed and the menu is not working on the check out page, I tried to click on “page” to display sub menus but not working. I tried on private nivation because it dont work only for new customer. Looks like if you already load just once the check out page, the prob dispapear, also it concern firefox any version .
Also the prob only occur if you click the “check out” button in the thumnail my web: mydaw.net
here the video https://drive.google.com/open?id=0B_MKEmpZaCgyZk8wblh4Snp1Sjg
BUG: sub menus not showing, social login not opening, “show terms” not showing
On Firefox (any version any OS)
Where? check out page
How to reproduce?
1/ Open private firefox or clear data, you must be like the 1rt time to surf on mydaw.net .
2/ Add an item to cart
3/ Click “Check out” in the thumbail (important)
4/ on check out page, click on the menu to display submenus, or click on Facebook or any social login, or on “show terms”
Nothing is displaying.
Video :
https://drive.google.com/open?id=0B_MKEmpZaCgyZk8wblh4Snp1SjgNotes : if you refresh the check out page, the bug is gone, if you come to my web a 2nd time the bug is not here.
If you click on the icon cart and click check out (see step 3), the prob is not here
If you refresh the page and it works, it’s related to the ajax to load page. make sure the checkout page is not in a ajax mode, you can select “default template” for the checkout page on the “page attribute” meta box.
Where would I find the html code or script for the current user playlist. ( When your logged in and on the buddypress profile page, and click “playlists” )
I want to do some custom coding to make the user playlists appear in a different part of the site. But i cannot find any of the code or scripts used for it
“inc/buddypress.php” create the nav item. “inc/playlist.php” get_playlist_display() show the playlist.
thanks…. i can’t quite get the code right without getting syntax errors all over the place. Could you give me a little more detail?
do i need to do the whole ‘function’ code for get_playlist_display?
get_playlist_display() is in the “inc/playlist.php”, when click the “playlist” tab on buddypress profile page will call this function to display the playlist.
you can call this function on other page.
so on my custom page…..this is the php i created :
<?php
if( function_exists(‘buddypress’) ){
function my_bp_nav_adder() {
global $bp;
if( get_theme_mod( 'show-playlist' ) ){
bp_core_new_nav_item(
array(
'name' => __('Playlists', 'musik' ),
'slug' => 'playlists',
'position' => 1,
'screen_function' => 'Playlistsdisplay',
'default_subnav_slug' => 'playlists',
'parent_url' => $bp->loggedin_user->domain . $bp->slug . '/',
'parent_slug' => $bp->slug
) );
}
function get_playlist_display($user_id){
global $bp;
$arg = array(
'post_type' => 'playlist',
'posts_per_page' => -1,
'author' => $user_id
);
$arg['paged'] = 1;
if ( get_query_var( 'paged' ) )
$arg['paged'] = get_query_var('paged');
else if ( get_query_var( 'page' ) )
$arg['paged'] = get_query_var( 'page' );
else if ( isset( $_GET['link'] ) )
$arg['paged'] = $_GET['link'];
else if ( preg_match('/\/page\/[0-9]*\//', $_SERVER['REQUEST_URI'], $matches) ){
$arg['paged'] = str_replace(array('page','/'), '', $matches[0]);
}
$my_query = new WP_Query( $arg );
if($my_query->have_posts()){
?>
<?php
while($my_query->have_posts()){
$my_query->the_post();
?>
<?php get_template_part( 'template-parts/content-playlist' ); ?>
<?php
}
?>
Where did i go wrong?
Thanks for your help…i really need this to work to finish the site.
What’s your my_bp_nav_adder() function for, bp_core_new_nav_item() will add menu item on buddypress profile page.
if you just want to use on other page, you just need call get_playlist_display($user_id) function. the get_playlist_display() is already defined in the inc/playlist.php and included in the functions.php.
Ohhhhhh…..ok i got it! thanks!!!
how can i make the “related music” display in list format on track pages?
You need add ‘display’ => ‘list’ in the “template-parts/content-single-download.php” line 145,
the_widget(
'music_post_widget',
array(
'count' => 6,
'orderby' => 'date',
'related' => true,
'display' => 'list',
'type' => empty( $list ) ? 'single' : 'bundle',
'title' => get_theme_mod( 'title-related', esc_html__('Related music', 'musik') )
),
array(
'before_title'=>'<h3 class="m-b">',
'after_title'=>'</h3>'
)
);
thank you!
Hello,
I’m using the Musik theme and I can not display the music the front page like shown in demo and how can I make the size of the images bigger like shown in the demo also, thank you
Sincerely
You need import the content.xml and widgets.wie to make the site looks like demo site.
Please use your purchased account to ask support.
Thanks
hello please help my website is jamed when i active the them thank
Jamed? can you show me your website url?
hello please help my website is jamed when i active the them thank
Hey there!
Is there a way to have the menu always expanded and not show only the icons ?Thanks!
yes. you can disable it in backend. Thanks
Hey there,
I’m in the process of building my site with your theme and i want to mainly use soundcloud songs as content.
I’ve created a app on soundcloud and have pasted my client id in appearance > customize > misc
Created a new station and inserted the track id i have generated by using the method explained in your documentation. But for some reason i’m not able to play the track.
Here’s my post: http://audiobaby.co/station/the-roots-tomorrow-feat-raheem-devaughn/
I also do get an error when i use the ‘get’ button after pasting a soundcloud url within a station. Here’s a screenshot: http://audiobaby.co/wp-content/uploads/2016/05/get.png
Maybe this is what’s causing this? Can you help?
Thanks in advance, Thomas
It plays when click the play button.