Discussion on Waveme - Music Platform WordPress Theme

Discussion on Waveme - Music Platform WordPress Theme

Cart 623 sales
Well Documented

Flatfull supports this item

Supported

2777 comments found.

After looking through the demo pages and digging through the comments here, I’ve noticed you’ve added a bunch of different “Additional CSS Classes” in various blocks on different pages of the site. (examples include – ‘block-loop-row’ or ‘block-loop-index’ for play blocks, or ‘site-header-transparent’ ‘hide-sidenav-icon’ ‘hide-search’ on pages). Do you have documentation anywhere of any (or all) of these css shortcodes that you use? They seem extremely useful in order for us to make customizations ourselves. Thank you.

for loop block.
block-loop-row
block-loop-index
block-loop-overlay
block-loop-hover
block-loop-reverse
for landing page
site-header-transparent
hide-sidenav-icon
hide-search

Also you can add your own custom css and apply on different pages.

Thanks

hello,

Is there any way to include a Page (not station) by its ID into a Play Loop block using a query?

Exactly, I want to mix them somehow. Thank you!

hello!

When you believe this would be released?

I just found a way to mix them by selecting this type: https://i.imgur.com/OPdgK5v.png and then setting post_type to “any” (https://i.imgur.com/gdOIPcW.png) on WP_Query.

But this doesn’t let me to mix these queries: https://i.imgur.com/L5II7be.png (include only the page id and also include stations by TAXONOMIES). I can only use one at a time.

On debug mode the query looks like this: https://i.imgur.com/Bt8kFSz.png.

Thank you!

post__in not works. i will implement this feature in future update. Thanks

Hello. I’m doing ok setting up the theme and really like it. Just having an issue getting the Sign Up Button to work. Please view this video that shows the issue. https://vimeo.com/772198072/c1d2509467

That looks like a caching issue, can you post a screenshot of how you the menus (for before and after) login look?

Thank you. It was a caching issue!

This theme’s loop block plugin comes with a “Block Permission”. It’s quite useful. A shame it is not documented anywhere… :(

We will see about adding some documentation, but the block is pretty straight forward. You just add the content you want to show (or hide) within it and it will display based on that condition.

The conditions can be user roles, etc.

at least mention it exists, for future users. I’ve been working with the theme and plugins for a year now and just discovered it this week.

OK. I will add it in the document page. Thanks

Hey how can i change logo. for dark version and white version,thank you

Use svg logo. Please use purchased account to post questions. Thanks

Hi, good afternoon. I bought this theme and I’m uploading it to WP and that appears when I uploaded the single winrar file that I downloaded from the purchase page.

Installing the theme from the uploaded file: themeforest-NUk89eTv-waveme-music-platform-wordpress-theme.zip Decompressing…

Installing the theme…

((((((((((((((((((((The package could not be decompressed. The theme does not have the style.css stylesheet.

Theme installation failed.)))))))))))))))))))))))))

Some of your translations need to be updated. Wait a few more seconds while they update as well.

Updating the translations of Twenty Twenty-One (es_ES)… Translation updated successfully.

Updating the translations of Twenty Twenty-Three (es_ES)… Translation updated successfully.

Updating the translations of Twenty Twenty-Two (es_ES)… Translation updated successfully.

You need to extract the ZIP file and upload the ZIP file within (which contains the theme files).

Once you have done that, make sure you enter the license key under Settings > General.

Hello, good afternoon

I want to buy this WAVEME theme. I would like to know if you make arrangements on the subject if they are requested apart from the current purchase cost?

Do you plan to optimize the theme with Gutenberg Optimized?

Thank you very much….

The theme is Gutenberg optimised, all the content and layout is handled by standard Gutenberg blocks and our own Play and Loop blocks.

How can I set a menu like your new theme musicon menu in full screen mode?

Add fullscreen classname in the menu item to enable it.

ho w to show now playing form azuracast source?

Put the azuracast stream url in the Play block stream field.

hello, another question, can we add album from frontend?

Drag multiple audio files to create album.

the cool svg logo is not appearing on my website. Love this because it animates like an app. How can I fix this?

that still did not fix the issue. this is so bizarre

The demo site is using this logo.svg.

Hi dear, i want to buy your theme but i’m wondering if you make some little customization on theme because i want to add some little feature and tell me how much will cost me to add something in code. Thanks

What feature you want? maybe it’s already there. Thanks

Thanks for the reply, how can i contact you privately to send you requirements. Thanks

You can send info to hey@flatfull.com

Hello. I get an error when installing plugins – PCLZIP_ERR_BAD_FORMAT (-10) : Invalid archive structure Can you email me plugins? pritop@gmail.com

You need to enter the license code under Settings > General and you will be able to download the plugins.

yes i did it. But it shows an error when downloading which he said.

Try again.

Hi there,

Can I change the redirection when a user is logging in to see the Home Page, not the user profile page.

Thanks!

upload in WordPress admin panel?

Did that finally!

Now, I activate the child theme and add the above code into functions.php?

Do I have to add it at the bottom?

Hi,

Would you happen to know why my 30 sec. video on the front page (about us) does not ‘play on my mobile device?’ It’s an image with a play button in the middle.

Please advise. Thank you.

Did you set the preview limit on the Stations>Settings>Player?

Hi there,

I would like change the redirection after user login and show the home page (not the user profile page).

Thanks!

Add this to your functions.php in the child theme:

function ap_login_redirect( $url, $user_id ) {
    return site_url();
}
add_filter( 'play_login_redirect_url', 'ap_login_redirect', 10, 2 );

1. How can I disable/remove the notifications icon in the top menu?

2. How can I make the player at the bottom taller/bigger?

1. Put code in child theme functions.php
remove_action( 'menu_after_login_before', 'play_menu_after_login_before', 10 );
2. Use custom css to customize it.
.fixed-bottom.plyr-playlist .plyr__controls{padding:15px 10px;}

Please extend the support license to get tech support.

CSS error since last update : you used margin-inline-right on ”.entry-term > *, .entry-tag > *” when it is margin-inline-end that should be used. On Firefox and Chrome at least it does not work

Got it. Thanks

What is the function (shortcode) to have the total number of streams for all songs (stations) loaded on the site? I want to display it on the main page. TY

I saw you set the preview limit, you can disable it and see if it plays.

That doesn’t work

Make sure you do not mix the http and https

I used this function to get the total user count via shortcode: // Function to return user count function wpb_user_count() { $usercount = count_users(); $result = $usercount[‘total_users’]; return $result; } // Creating a shortcode to display user count add_shortcode(‘user_count’, ‘wpb_user_count’);

What is the function (shortcode) to have the total number of songs (stations) loaded on the site? TY

Tested on local and it works.

add_filter(‘play_use_desc_moreless’, ‘__return_true’);

IT DOESN’T WORK, check yourself (code added to functions child theme): https://url.dev/m/Mw55vq8/

SCREENSHOT CODE: https://ibb.co/TBmT5sZ

TY FOR SUPPORT

Make sure you do not customize the play-block/templates/user/header.php

Hello sir/madam. I have an issue. I want to change the setting of my website so people can be able to download with having to first login. Yes I unticked the option in station settings but still guests cant see the download button. Please help me. Sofar what I did is include the the song url in purchase button but we all know its not supposed to be there if someone is to download correctly and secondly this redirects them to external new window which I dont like. Is there a way to make download icon appear for guests?. Help me please

Go to “stations > settings > downloads” to select “Require Registration”, so use need register to download.

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