WYSIWYG Editor conflict !!!

Hi,

I just wanted to let you know that WYSIWYG Editor ( tiny MCE ) doesn’t show in the backend due to a script conflict with ….

Here is the error from firebug:

TypeError: ({mediaBrowserOpener:null, mediaBrowserTargetElementId:null, initialize:(function (htmlId, config)
{
this.id = htmlId;
this.config = config;
varienGlobalEvents.attachEventHandler(‘tinymceChan ge’, this.onChangeContent.bind(this));
this.notifyFirebug();
if(typeof tinyMceEditors == ‘undefined’) {
tinyMceEditors = $H({});
}
tinyMceEditors.set(this.id, this);
}), notifyFirebug:(function () {
if (firebugEnabled() && $(‘fb’ + this.id) == undefined) {
var noticeHtml = ‘<ul class="messages message-firebug" id="fb’ + this.id + ‘"><li class="notice-msg">’;
noticeHtml+= ‘<ul><li>’;
noticeHtml+= ‘<b>’ + this.config.firebug_warning_title + ‘:</b> ‘;
noticeHtml+= this.config.firebug_warning_text;
noticeHtml+= ‘ <a id="hidefb’ + this.id + ‘" href="">’ + this.config.firebug_warning_anchor + ‘</a>’;
noticeHtml+= ‘</li></ul>’;
noticeHtml+= ‘</li></ul>’;
$(‘buttons’ + this.id).insert({before: noticeHtml});
Event.observe($(‘hidefb’ + this.id), "click", function(e) {
$(‘fb’ + this.id).remove();
Event.stop(e);
}.bind(this));
}
}), setup:(function (mode)
{
if (this.config.widget_plugin_src) {
tinymce.PluginManager.load(‘magentowidget’, this.config.widget_plugin_src);
}

if (this.config.plugins) {
(this.config.plugins).each(function(plugin){
tinymce.PluginManager.load(plugin.name, plugin.src);
});
}

tinyMCE.init(this.getSettings(mode));
}), getSettings:(function (mode)
{
var plugins = ‘safari,pagebreak,style,layer,table,advhr,advimage ,emotions,iespell,media,searchreplace,contextmenu, paste,directionality,fullscreen,noneditable,visual chars,nonbreaking,xhtmlxtras’;

if (this.config.widget_plugin_src) {
plugins = ‘magentowidget,’ + plugins;
}

var magentoPluginsOptions = $H({});
var magentoPlugins = ”;

if (this.config.plugins) {
(this.config.plugins).each(function(plugin){
magentoPlugins = plugin.name + ‘,’ + magentoPlugins;
magentoPluginsOptions.set(plugin.name, plugin.options);
});
if (magentoPlugins) {
plugins = ‘-‘ + magentoPlugins + plugins;
}
}

var settings = {
mode : (mode != undefined ? mode : ‘none’),
elements : this.id,
theme : ‘advanced’,
plugins : plugins,
theme_advanced_buttons1 : magentoPlugins + ‘magentowidget,bold,italic,underline,strikethrough ,|,justifyleft,justifycenter,justifyright,justifyf ull,|,styleselect,formatselect,fontselect,fontsize select’,
theme_advanced_buttons2 : ‘cut,copy,paste,pastetext,pasteword,|,search,repla ce,|,bullist,numlist,|,outdent,indent,blockquote,| ,undo,redo,|,link,unlink,anchor,image,cleanup,help ,code,|,forecolor,backcolor’,
theme_advanced_buttons3 : ‘tablecontrols,|,hr,removeformat,visualaid,|,sub,s up,|,charmap,iespell,media,advhr,|,ltr,rtl,|,fulls creen’,
theme_advanced_buttons4 : ‘insertlayer,moveforward,movebackward,absolute,|,s tyleprops,|,cite,abbr,acronym,del,ins,attribs,|,vi sualchars,nonbreaking,pagebreak’,
theme_advanced_toolbar_location : ‘top’,
theme_advanced_toolbar_align : ‘left’,
theme_advanced_statusbar_location : ‘bottom’,
theme_advanced_resizing : true,
convert_urls : false,
relative_urls : false,
content_css: this.config.content_css,
custom_popup_css: this.config.popup_css,
magentowidget_url: this.config.widget_window_url,
magentoPluginsOptions: magentoPluginsOptions,
doctype : ‘<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">&#8217;,

setup : function(ed) {
ed.onSubmit.add(function(ed, e) {
varienGlobalEvents.fireEvent(‘tinymceSubmit’, e);
});

ed.onPaste.add(function(ed, e, o) {
varienGlobalEvents.fireEvent(‘tinymcePaste’, o);
});

ed.onBeforeSetContent.add(function(ed, o) {
varienGlobalEvents.fireEvent(‘tinymceBeforeSetCont ent’, o);
});

ed.onSetContent.add(function(ed, o) {
varienGlobalEvents.fireEvent(‘tinymceSetContent’, o);
});

ed.onSaveContent.add(function(ed, o) {
varienGlobalEvents.fireEvent(‘tinymceSaveContent’, o);
});

ed.onChange.add(function(ed, l) {
varienGlobalEvents.fireEvent(‘tinymceChange’, l);
});

ed.onExecCommand.add(function(ed, cmd, ui, val) {
varienGlobalEvents.fireEvent(‘tinymceExecCommand’, cmd);
});
}
};

// Set the document base URL
if (this.config.document_base_url) {
settings.document_base_url = this.config.document_base_url;
}

if (this.config.files_browser_window_url) {
settings.file_browser_callback = function(fieldName, url, objectType, w) {
varienGlobalEvents.fireEvent("open_browser_callbac k", {win:w, type:objectType, field:fieldName});
};
}

if (this.config.width) {
settings.width = this.config.width;
}

if (this.config.height) {
settings.height = this.config.height;
}

return settings;
}), openFileBrowser:(function (o) {
var typeTitle;
var storeId = this.config.store_id !== null ? this.config.store_id : 0;
var wUrl = this.config.files_browser_window_url +
‘target_element_id/’ + this.id + ‘/’ +
‘store/’ + storeId + ‘/’;

this.mediaBrowserOpener = o.win;
this.mediaBrowserOpener.blur();
this.mediaBrowserTargetElementId = o.field;

if (typeof(o.type) != ‘undefined’ && o.type != "") {
typeTitle = ‘image’ == o.type ? this.translate(‘Insert Image…’) : this.translate(‘Insert Media…’);
wUrl = wUrl + "type/" + o.type + "/";
} else {
typeTitle = this.translate(‘Insert File…’);
}

MediabrowserUtility.openDialog(wUrl, false, false, typeTitle);
}), translate:(function (string) {
return ‘undefined’ != typeof(Translator) ? Translator.translate(string) : string;
}), getMediaBrowserOpener:(function () {
return this.mediaBrowserOpener;
}), getMediaBrowserTargetElementId:(function () {
return this.mediaBrowserTargetElementId;
}), getToggleButton:(function () {
return $(‘toggle’ + this.id);
}), getPluginButtons:(function () {
return $$(‘#buttons’ + this.id + ‘ > button.plugin’);
}), turnOn:(function () {
this.closePopups();
this.setup();
tinyMCE.execCommand(‘mceAddControl’, false, this.id);
this.getPluginButtons().each(function(e) {
e.hide();
});
}), turnOff:(function () {
this.closePopups();
tinyMCE.execCommand(‘mceRemoveControl’, false, this.id);
this.getPluginButtons().each(function(e) {
e.show();
});
if (Prototype.Browser.IE) {
// workaround for ie textarea redraw bug
window.setTimeout(function(){
$(this.id).value = $(this.id).value;
}.bind(this), 0);
}
}), closePopups:(function () {
// close all popups to avoid problems with updating parent content area
closeEditorPopup(‘widget_window’ + this.id);
closeEditorPopup(‘browser_window’ + this.id);
}), toggle:(function () {
if (!tinyMCE.get(this.id)) {
this.turnOn();
return true;
} else {
this.turnOff();
return false;
}
}), onFormValidation:(function () {
if (tinyMCE.get(this.id)) {
$(this.id).value = tinyMCE.get(this.id).getContent();
}
}), onChangeContent:(function () {
// Add "changed" to tab class if it exists
if(this.config.tab_id) {
var tab = $$(‘a[id$=’ + this.config.tab_id + ‘]’)[0];
if ($(tab) != undefined && $(tab).hasClassName(‘tab-item-link’)) {
$(tab).addClassName(‘changed’);
}
}
}), makeDirectiveUrl:(function (directive) {
return this.config.directives_url.replace(‘directive’, ‘directive/___directive/’ + directive);
}), encodeDirectives:(function (content) {
// collect all HTML tags with attributes that contain directives
return content.gsub(/<([a-z0-9\-\_]+.+?)([a-z0-9\-\_]+=".*?\{\{.+?\}\}.*?".+?)>/i, function(match) {
var attributesString = match[2];
// process tag attributes string
attributesString = attributesString.gsub(/([a-z0-9\-\_]+)="(.*?)(\{\{.+?\}\})(.*?)"/i, function(m) {
return m[1] + ‘="’ + m[2] + this.makeDirectiveUrl(Base64.mageEncode(m[3])) + m[4] + ‘"’;
}.bind(this));

return ‘<‘ + match[1] + attributesString + ‘>’;

}.bind(this));
}), encodeWidgets:(function (content) {
return content.gsub(/\{\{widget(.*?)\}\}/i, function(match){
var attributes = this.parseAttributesString(match[1]);
if (attributes.type) {
var placeholderFilename = attributes.type.replace(/\//g, "__") + ".gif";
if (!this.widgetPlaceholderExist(placeholderFilename) ) {
placeholderFilename = ‘default.gif’;
}
var imageSrc = this.config.widget_images_url + placeholderFilename;
var imageHtml = ‘<img’;
imageHtml+= ‘ id="’ + Base64.idEncode(match[0]) + ‘"’;
imageHtml+= ‘ src="’ + imageSrc + ‘"’;
imageHtml+= ‘ title="’ + match[0].replace(/\{\{/g, ‘{‘).replace(/\}\}/g, ‘}’).replace(/\"/g, ‘&quot;’) + ‘"’;
imageHtml+= ‘>’;

return imageHtml;
}
}.bind(this));
}), decodeDirectives:(function (content) {
// escape special chars in directives url to use it in regular expression
var url = this.makeDirectiveUrl(‘%directive%’).replace(/([$^.?*!+:=()\[\]{}|\])/g, ‘\$1’);
var reg = new RegExp(url.replace(‘%directive%’, ‘([a-zA-Z0-9,_-]+)’));
return content.gsub(reg, function(match) {
return Base64.mageDecode(match[1]);
}.bind(this));
}), decodeWidgets:(function (content) {
return content.gsub(/<img([^>]+id=\"[^>]+)>/i, function(match) {
var attributes = this.parseAttributesString(match[1]);
if(attributes.id) {
var widgetCode = Base64.idDecode(attributes.id);
if (widgetCode.indexOf(‘{{widget’) != -1) {
return widgetCode;
}
return match[0];
}
return match[0];
}.bind(this));
}), parseAttributesString:(function (attributes) {
var result = {};
attributes.gsub(/(\w+)(?:\s*=\s*(?:(?:"((?:\.|[^"])*)")|(?:'((?:\.|[^’])*)’)|([^>\s]+)))?/, function(match){
result[match[1]] = match[2];
});
return result;
}), beforeSetContent:(function (o) {
if (this.config.add_widgets) {
o.content = this.encodeWidgets(o.content);
o.content = this.encodeDirectives(o.content);
} else if (this.config.add_directives) {
o.content = this.encodeDirectives(o.content);
}
}), saveContent:(function (o) {
if (this.config.add_widgets) {
o.content = this.decodeWidgets(o.content);
o.content = this.decodeDirectives(o.content);
} else if (this.config.add_directives) {
o.content = this.decodeDirectives(o.content);
}
}), widgetPlaceholderExist:(function (filename) {
return this.config.widget_placeholders.indexOf(filename) != -1;
})}) is not a function

I hope somebody find a solution for this…

4 answers

Profile photo of Sherlock 0.00 $tone March 4, 2013
Public

Hi abrart,

This issue has been fixed and update into the theme download package, you can also try as following to get it fixed

Open the layout file of app\design\adminhtml\default\default\layout\jmbase theme.xml you remove this tag

HTML Code:

<action method="addItem" ><type>js</type><name>joomlart/jmbasetheme/jquery1.6.4.min.js</name></action>

Then you open the file of app\code\local\Wavethemes\Jmbasetheme\Block\Adminh tml\System\Config\Form\Profile.php replace this line

PHP Code:

$output '<script type="text/javascript" src="'.str_replace("index.php","",Mage::getBaseUrl()).'/js/joomlart/jmbasetheme/jmbasetheme.js"></script>'




To

PHP Code:

$output '<script type="text/javascript" src="'.str_replace("index.php","",Mage::getBaseUrl()).'/js/joomlart/jmbasetheme/jquery1.6.4.min.js"></script>'.'<script type="text/javascript" src="'.str_replace("index.php","",Mage::getBaseUrl()).'/js/joomlart/jmbasetheme/jmbasetheme.js"></script>'




Let me know if it helps

#1
Profile photo of Altjon Kodra 20.00 $tone March 4, 2013
Public

Thanks, it worked just fine superb!

Another thing I found out:

The LABEL function has a bug… If I choose NEW or HOT for a product, it shows greit in the homepage but in the category view EVERY product shows as NEW or HOT!!!

So, a product with Label triggers every product in the same category to show the same label, even if the other products have label set to NONE.

Thanks once more!

#2
Profile photo of Sherlock 0.00 $tone March 5, 2013
Public

Hi abrart,

I checked again and see that it’s a bug, you can replace the file of app\design\frontend\default\jm_flanneltemplate\ca talog\product\list.phtml by the fixed file I attached here (unzip it first).

#3

This question is now closed

Written By

Comments