Hello there,
Your theme, or another plugin, is forcibly inserting some extra paragraph closing tags into our plugin’s output somehow.
One thing you could do is to turn off a plugin / clear cache / test gallery / turn back on the plugin, to identify which plugin is causing the issue (turn off each plugin–just one at at a time–until your gallery works). Let us know which plugin it is that’s causing the problem, then we can try determine a solution that will make both plugins compatible with each other.
While you’re testing, please remember to clear your cache every time you turn on/off a plugin (It looks like you’re using WP Fastest Cache).
Thanks,
-EmbedPlus Team
Well, with all plugins disabled the problem persists…
With some themes i’m getting different errors – error 56, error 28, error 7, API key updated and it worked fine.
With twenty-ten works fine, but now with my theme also works fine, therefore I have to wait for next bug moment and switch again to other themes and check again.
In all cases the Play button is not centered…
Hello,
Since the problem persists with plugins disabled, then the issue is most likely your theme. For the play button not being centered, your theme unfortunately tries to wrap all images in <p> tags before the page is loaded, which breaks the alignment of the play button.
This behavior is likely caused by something called “wpautop” that either your theme or another plugin is enforcing. You can remove the bad <p> tags with css like this:
.epyt-gallery-list p {
display: none;
}
Paste that in your theme’s css (or add it to your site via a separate css plugin).
Hope that helps!
It works. Thank you so much!