Have you updated or installed any other plugins or themes lately?
I’m guessing there is a javascript error somewhere on your site that has broken the “plus” functionality. Are you able to re-arrange your ticks still (I’m thinking you won’t)?
Thanks for fast response,
Yes I installed a lot of plugins and updates, i did not notice several months that it is stopped working.
Nothing, plus, minus, re-arrange not work.
Here is list of plugins that I have installed:
Black Studio TinyMCE Widget
Breadcrumb NavXT
CMS Page Order
Contact Form
Display widgets
Ditty News Ticker
Exclude Pages from Navigation
Facebook Page Promoter Lightbox
FLV Embed
Google sitemap plugin
GT Tabs
Leaflet Maps Marker ®
Meta Slider
Preserved HTML Editor Markup
qTranslate
qTranslate extension
TinyMCE Advanced
Toppa Plugins Libraries for WordPress
Viper’s Video Quicktags
wpautop-control
WP Maintenance Mode
WP Super Cache
WP TinyMCE Excerpt
Wysija Newsletters
URL:
http://www.livecamcroatia.com
Run through both of the FAQ’s on this page http://metaphorcreations.ticksy.com/faqs/#category_2796 to figure out which plugin is causing the issue. Then let me know what plugin that is.
i have the same problem. the problem Plugin is http://wpmarketing.org/wp-plugins/hana-flv-player/. Wenn i deaktivate hana-flv-player the news ticker admin works.
I installed the hana flv player and am seeing this javascript error:
Uncaught ReferenceError: QTags is not defined post.php?post=510&action=edit:1006
Please contact the author of that plugin and let them know this error is causing issues with other plugins and should be fixed.
I found it: WP TinyMCE Excerpt. When it is disabled all work well.
The error with the TinyMCE Excerpt is due to it adding scripts referencing tinyMCE without checking to see if it exists. Since the DItty News Ticker edit screen doesn’t contain the main Editor, there is not tinyMCE element created. This error would pop up for any custom post type that does not use the main Editor. Here is the script that causes the error:
<script>
jQuery(document).ready( tinymce_excerpt );
function tinymce_excerpt() {
jQuery("#excerpt").addClass("mceEditor");
tinyMCE.execCommand("mceAddControl", false, "excerpt");
tinyMCE.onAddEditor.add(function(mgr,ed) {
if(ed.id=="excerpt"){
ed.settings.theme_advanced_buttons2 ="";
ed.settings.theme_advanced_buttons1 = "bold,italic,underline,seperator,justifyleft,justifycenter,justifyright,separator,link,unlink,seperator,pastetext,pasteword,removeformat,seperator,undo,redo,seperator,spellchecker,";
}
});
}
</script>
Please let the author of that plugin know of this issue, so hopefully that will resolve it.