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.

sounds Purchased

Hi, lovin the theme btw, one question please.

When ending the Footer page, I added some social icons (follow us) each icon has a different color, as expected, but when I save and view the Footer preview, there’s two versions of the footer, one has colored social icons, the other footer has all white icons, the white icons are being displayed in the footer of the website. How do I get it to show the footer with the colored icons.

Thanks in advance

sounds Purchased

Sorry, what do you mean “You can choose icon only in the admin”

On the social block, advanced tab use “is-style-logos-only” css classname to enable color.

sounds Purchased

That code is already in Additional CSS box https://ibb.co/W4xCcXVy But I’m still seeing the white icons on the website https://ibb.co/d4HWy635

I have (2) questions I’m hoping you can answer. I’ve been having issues with layout and disabled my ARMember plug in and it seems to return to normal function, however, I need a subscription front end for my site. Can you suggest one that works well with Wave Me, similar to ARMember? 2nd question, is there a way to have an SMS share feature? Currently there is one for Facebook and one for X. Is this possible?

Thanks,

Use the simple membership plugin.

the musicon theme is using the simple membership plugin

Can you help? My site when artist are clicked on it appears something is missing, it looks more like a mobile representation on a desktop computer. I tried downloading the latest version but it still looks the same. Please take a look at: http://bridgetsound.com/thevault

thanks, Kris

None of the “play” buttons work nor does any option under the three dot menu.

Also on artist pages none of the waveform for that track show up

Please disable other plugins.

@ KrisZiakas, Try to fix the problems with ChatGPT; that’s what I’m doing, and I have new modules I’ve made with his help… Because it seems like this guy doesn’t care about anyone and has a ton of stuff for sale. I don’t know what the people at Envato think, but this doesn’t give anyone much hope of buying anything here.

If you have custom request. please contact hey@flatfull.com

Hello, I asked about why my waveme website looks different than it used to. I was informed my version needed to be updated so I downloaded the latest version, installed it and it still looks the same. Once I click on an artist album cover, it looks like a narrow view of a mobile app, things are displayed a bit different as well. Can you let me know what I need to do? Thanks,

https://www.bridgetsound.com/thevault/?station=my-number-one

Kris

Please make sure use the latest version of the theme and plugins.

Critical iframe bug affecting embedded player – unresolved despite active support period Hello,

I’m contacting you regarding a critical bug in your CodeCanyon product that remains unresolved despite having occurred during my active support period.

The issue affects the iframe embed player. When the iframe is embedded outside the original environment (WordPress or external sites), the player incorrectly injects the full 800×800 artwork image inside the iframe, which completely overlays and blocks the audio player controls, rendering the embed unusable.

This is not a customization issue. This is a functional regression / bug directly related to how the iframe handles image sizing and rendering. The iframe should respect the dimensions defined in its own embed code, not force-load the full-size artwork and break the player layout.

Important points:

This bug already existed while my support was active

The product is still on sale

Paid support (€41) is still being offered

There has been no response for months, despite the severity of the issue

This behavior breaks a core advertised feature of the product: working embeds. Until this is fixed, the product does not function correctly in real-world use cases.

I am requesting:

A response confirming the issue

A fix or workaround for the iframe image injection problem

If there is no response, I will have no choice but to formally escalate the issue to CodeCanyon/Envato support, as this concerns:

An unresolved bug reported during valid support

A product still being sold with a broken core feature

Paid support being offered without author response

I hope this can be resolved professionally and without escalation.

Regards, Jesus Burgos ciberlinker

Technical summary about the Play Block embed issue

Hi,

I’m writing to give you a clear technical summary of the embed issue we’ve been experiencing with the Play Block plugin.

1) Problem description

The official embed endpoint (/embed/{id}) is rendering without proper styling on our site:

Oversized cover image

Broken layout and typography

Player icons rendered extremely large (native HTML-style controls)

Waveform and UI not styled correctly

Audio playback may work, but the embed UI and controls clearly load without the plugin’s CSS and/or JS.

This behavior is consistent and reproducible on our installation.

2) Root cause analysis

All signs point to an asset loading issue, not a browser or server incompatibility:

build/style.min.css and/or build/play.min.js are not being applied correctly on /embed/{id}

Either:

the assets are not being loaded at all,

or their load order is broken,

or optimization (minify/combine/defer/cache) is interfering with them.

We’re running on SiteGround, and aggressive optimization can make the issue worse, but a correctly implemented embed should survive standard hosting optimizations.

3) Template review

We reviewed and modified:

wp-content/plugins/play-block/templates/blocks/embed.php

We tested:

Re-adding style.min.css and plyr.min.css

Ensuring jQuery loads before play.min.js

Making sure the play JS config object is defined before script execution

Adding <base target=”_top”> to ensure links exit the iframe

Despite this, the official embed endpoint still fails intermittently, which strongly suggests the issue is asset delivery / optimization / caching, not just the template HTML.

4) Temporary workaround (proof of concept)

Because this issue had been blocking us for months without feedback, we implemented a separate custom embed endpoint (/rdj-embed/{id}) using a WordPress snippet:

CSS is injected inline directly from the plugin’s build files

JS is loaded in a guaranteed-safe order (jQuery → play.min.js)

Result: the embed works perfectly across browsers and devices

This confirms:

The plugin itself works

The problem lies in the official embed’s asset loading path

5) What needs to be checked on your side

To properly fix the official embed, we recommend checking:

In DevTools → Network on /embed/{id}:

.../build/style.min.css → 200 OK, correct MIME (text/css)

.../build/play.min.js → 200 OK, no JS errors

That play.min.js is not deferred or combined before jQuery

That SiteGround Optimizer (or any cache/minifier):

excludes Play Block assets

or excludes /embed/* from optimization

That the embed template always outputs:

the CSS links

the play config object

scripts in the correct order

6) Context

We had to implement our own solution because the embed is a core feature for users, and this issue has been unresolved for months. The workaround keeps our platform running, but we still need the official embed fixed, since that’s what users get from the Share modal.

You can customize the embed.php but keep the css and js file.

Thanks for the clarification.

Just to explain what happened on our side and why this became an issue:

We did customize embed.php, but originally this was done because the embed was already rendering broken (CSS not applied correctly, oversized cover image, incorrect controls, waveform not styled). So the customization was not arbitrary — it was an attempt to restore basic functionality.

What we confirmed during debugging is:

The embed breaks as soon as style.min.css or play.min.js are not loaded correctly or in the proper order.

On /embed/{id}, the player is extremely sensitive to:

asset load order (jQuery must load before play.min.js)

CSS being deferred, combined, or cached aggressively

On SiteGround, standard optimization (minify/combine/defer) is enough to break the embed if the assets are not explicitly protected.

To validate this, we built a separate custom embed endpoint that:

uses the same Play Block hooks (the_loop_waveform, play.min.js)

injects the plugin CSS inline (as a test)

loads JS in a guaranteed-safe order

Result: the embed works perfectly across browsers.

This confirms that:

the plugin logic itself is fine

the issue is specifically related to how the official embed loads its CSS/JS assets

At the moment:

we understand that embed.php can be customized

but the embed template needs to be more resilient to hosting optimizations, or clearly documented as requiring exclusions for:

build/style.min.css

build/play.min.js

the /embed/* endpoint

Otherwise, users on managed hosting environments will keep running into the same issue.

If you want, we’re happy to:

revert closer to the original embed.php

or help test a more robust version that survives common caching/minification setups.

barri

barri Purchased

this is the error message for both loop block and play block

An error occurred while installing Loop Block: The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature.

try again. Thanks

ankylau

ankylau Purchased

How are you? Please update to WordPress 6.9

You can update to WP6.9 directly. Thanks

barri

barri Purchased

Hi, please reset my license domain so i can active the theme on my new website

barri

barri Purchased

An error occurred while installing Loop Block: The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature.

Try again

Anybody managed to get any support in the last 3 months?

Just trying to fresh install waveme but no longer possible due to a server error message that shows when trying to install the loop and play blocks, same for demo conent.

what’s error?

Hello, how are you? Please reset all licenses; I no longer use my old domains.

I have two licenses for this theme; please reset both of them.

reset all.

I received a message when I tried to update my new website. Downloading update from http://flatfull.com/support/wp-json/wp/v2/update/?code=a4b6a76c-0995-4e61-bebc-03d17b7c1cde&version=11.3&site=https://dezodpromomusic.com&plugin=loop-block…

Download failed. Not Found

Your theme is outdated. please update to new theme.

i can’t figure out how to put my music on the side, please help

Put music on the sidebar page.

How do I release a domain off an older purchase code?

Which domain you want to release.

How do I get the Wordpress menu bar to appear while logged in?

Go to playblock>settings>advanced to display admin bar

THIS DOES NOT WORK!!!!!!

Import demo data # Import the demo data for quick start using the theme.

Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.

Follow these steps:

Go to “Settings > General” to fill the purchase code. Click the “Import Demo Data” button Wait to finish the import

Server error, Try later.

Server error, Try later.

Server error, Try later.

3RD TRY AND IT STILL DOES NOT WORK

Trying to install wave me that I purchased but the loop and other plugins are giving zip file error messages when trying to install the plugins needed for the theme

I am going to purchase a new copy of WaveMe. How can I guarantee that the plugins, etc work with a new purchase?

DJOkawa

DJOkawa Purchased

https://i.postimg.cc/tTYhy87x/20250923223201-355-163.png Could the three ellipses in this location be changed to input a page number and press Enter to jump?

Hi im trying to upload tracks with an script to my waveme theme based website everything seems too be fine but i have a problem with generating the waveform and duration and bpm with my script I cant find the action and the api to do so. I know the plyr.waveform.js is responsible for creating these metadata but I cant access it through Rest API or exec function off the wp dashboard can you please help me out with this

When changing station archive pages to use pagination by editing the archive-station.php template lin 42:

‘pager’ => ‘pagination’,

the pagination does not work properly, it will work from a certain set of pages but will show 404’s for many of the pages.

Please can you fix or advise as this is very bad for seo and indexing as pages have a lack of internal links.

Thank you very much.

Is support dead? Last reply from author was 26 days ago.

Hello, I tried everything to be able to login for downloading the Cloudflare add-on (https://avtheme.com/play-block-and-cloudflare-turnstile-integration/). I never received an eMail for pw reset and with valid pw I´m not able to log in. What is the issue here?

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