Hello,
I am a representative of MediaCore, which publishes 2 plugins on www.ads-software.com. Our platform has shut down due to being acquired, and I need to remove our plugins from the WordPress catalog.
How do I do this?
Thanks.
]]>Is it possible to integrate collections as video galleries in wp?
]]>WP Multisite version 4.1.3, if a site activates MediaCore 2.7.2, the site goes blank. Had to downgrade to MediaCore 2.6.
]]>In editor_plugin.js the following JavaScript is breaking the post editor in WordPress 3.9.1
tinyMCE.dom.Event.add(editBtn, 'mousedown', function(e) {
t._hideButtons();
var ed = tinyMCE.activeEditor,
el = ed.selection.getNode();
ed.execCommand('mceMediaCoreChooser');
return false;
});
tinyMCE.dom.Event.add(deleteBtn, 'mousedown', function(e) {
var ed = tinyMCE.activeEditor,
el = ed.selection.getNode(),
parent;
if (el.nodeName == 'IMG' && ed.dom.hasClass(el, t.btnClass)) {
t._hideButtons();
parent = el.parentNode;
ed.dom.remove(el);
ed.execCommand('repaint');
//ed.selection.select(parent);
return false;
}
});
The following fixes that:
tinyMCE.dom.Event.bind(editBtn, 'mousedown', function(e) {
t._hideButtons();
var ed = tinyMCE.activeEditor,
el = ed.selection.getNode();
ed.execCommand('mceMediaCoreChooser');
return false;
});
tinyMCE.dom.Event.bind(deleteBtn, 'mousedown', function(e) {
var ed = tinyMCE.activeEditor,
el = ed.selection.getNode(),
parent;
if (el.nodeName == 'IMG' && ed.dom.hasClass(el, t.btnClass)) {
t._hideButtons();
parent = el.parentNode;
ed.dom.remove(el);
ed.execCommand('repaint');
//ed.selection.select(parent);
return false;
}
});
]]>
HI,
Any news on when will you have udated the MediaCore Pluging for WordPress 3.9.1?
Thanks a lot,
Jan-Erik Finlander
]]>I use a responsive theme on all of my websites where the size of the post area changes depending upon the size of the browser. This means I do NOT set a fixed width/height on any of my media elements, but rather use fluid % based width/height settings.
I noticed that the plugin is injecting an iframe with a fixed width of 400px which is completely destroying my theme layout, esp on mobile media queries.
How do I go about changing the embedded video to use width: 100% and a height: auto?
]]>Ran into 2 issues.
1. when I installed it the folder created was mediacore-wp-plugin which caused a number of js errors for missing files as the plugin is looking for a folder called mediacore. I simply renamed the plugin folder and this solved the issue.
*There are functions you can use in WP where you do not have to hardcode in the name of your plugin folder which would have solved the problem to begin with. I don’t have the snippet handy right now, but will post it when I do.
2. When I activate the plugin then the visual editor breaks. I see no buttons in the visual editor when creating or editing a post.
Deactivating the plugin solves the problem… which of course is not really a solution.
***Turns out it is something in WordPress 3.4 breaking the plugin. My demo of 3.3.1 works just fine. Would be nice to have a fix though as all my production sites run trunk.
]]>