pupunzi
Forum Replies Created
-
Do you have any errors in the javascript console?
What version of WordPress are you running with?The WordPress team found a possible security issue and I had to made several changes to the code so it is possible that something went wrong with the update… Surely the security issue has been fixed but maybe I introduced some other issue ??
I already tested the plugin both with WordPress 4.x and WordPress 5.x without problems but maybe there are some incompatibility issues on your installation that I didn’t consider. I need more information to understand what could be wrong with you.
Forum: Reviews
In reply to: [mb.YTPlayer for background videos] don’t workprobably you set a non standard ID for the Youtube video
The plugin that is overwriting the css class is: inline-mp3-player:
Player.prototype.onSoundComplete = function() {
document.getElementById(this.id).className = ‘silent’;
hideslider();
this.sound.start(0,1);
this.sound.stop();
this.hidden = 1;
this.song = ”;
this.playing = false;
this.id = ”;
}in https://www.jamesclifford.at/wp-content/plugins/inline-mp3-player/javascripts/Player.js
- This reply was modified 5 years, 9 months ago by pupunzi.
I can’t see the css class for the button here:
https://www.jamesclifford.at/wp-content/themes/twentytenjamesclifford/style.cssWhere did you add it?
You can add it to your theme style.css file but if you update the theme you would lose the changes; better if to the child theme style.css file if you have a child theme. You can also add it to the miniplayer.css file inside the CSS plugin folder but here also if you update the plugin you would lose the changes.
Hi,
I don’t know what is changing the class name of the button on your environment.
you can add this to your css:.mbMiniPlayer a.silent {
text-decoration: none;
display: inline-block !important;
vertical-align: middle !important;
margin: 0 !important;
padding: 0 5px !important;
font-family: “mb_audio_fontRegular” !important;
font-size: 50px !important;
line-height: 22px !important;
color: rgba(0,0,0,.2);
transition: color 1s;
-moz-transition: color 1s;
-webkit-transition: color 1s;
-o-transition: color 1s;
}Hi, the download button use to be a down arrow but in your case it has a “silent” class name instead of “map_download” that is preventing the correct display of the button.
The Gutenberg compatibility is not yet ready.
Hope to update the plugin on the next days.Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Can’t activate mb.YTPlayer pluginHi,
what version of PHP is running on your server?
What version of WordPress?Do you have access to the php_error.log file on your server to see what PHP error is fired?
Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Video background for an element with idHi,
You should purchase the Plus version of the WordPress plugin to enable the page element background movie:
https://pupunzi.com/wpPlus/go-plus.php?plugin_prefix=YTPLForum: Plugins
In reply to: [mb.YTPlayer for background videos] Video auto resize for mobile viewYes, send me the link
Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Video auto resize for mobile viewHi,
The YTPlayer has a responsive behavior and resizes according to its containment so if the containment is responsive the video will be responsive too.Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Video not Showing IssuesDo you have an URL where I can test your issue?
Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Compatibility with Genesis Child ThemeHi,
The feature you are describing is available with the PLUS version of this plugin.
It let you add the background video to any of the elements available on your page using a short-code composer.You can download and test the PLUS version here:
https://pupunzi.com/wpPlus/go-plus.php?plugin_prefix=YTPLIf you activate the “Test mode” the plugin will be fully functional for logged users (it will display a watermark).
Forum: Plugins
In reply to: [mb.YTPlayer for background videos] Config errorwith the next PLUS release this issue will e fixed. For the time you can add the same two lines:
if (empty($response)) $response = json_encode(array("result" => "OK", "COM" => "--", "DEV" => "--"));
in the /inc/mb_core.php file at line 265.
- This reply was modified 6 years, 6 months ago by pupunzi.