Plugin conflicts driving me nuts.

This topic contains 15 reply and 2 voices, and was last updated by Tareq Hasan 9 years, 9 months ago
Viewing 15 Posts - 1 through 15 (of 15 total)
Author Posts
July 5, 2014 at 6:11 pm 22978
Tareq Hasan Hi, I love this plugin and think it is superb but it does incur a number of conflicts with other plugins. At the moment I'm having a major issue with UPME OR user profiles made easy. As soon as I activate upme the rich texteara on my forms does not show and I cannot input any text. Is there a way that I can prevent this happening?
July 5, 2014 at 11:46 pm 23003
Marc BUCK Marc BUCK

I’ve already had to uninstall my rich snippets plugin as that was now causing a conflict as well as the User profile made easy plugin.

The strange this is that these were all working fine until recently but I really don’t want to install any more plugins as they affect the way my site functions.

I am guessing that this is a javascript error of sorts that must have occurred recently, as this problem has only just happened following the update.

July 6, 2014 at 12:38 am 23006
Tareq Hasan Tareq Hasan

May be you can give us access to your site and we can check what kind of conflicts you are having or you can checkout this link to find out what error you are having.

July 6, 2014 at 12:51 am 23010
Marc BUCK Marc BUCK This reply has been marked as private.
July 6, 2014 at 12:53 am 23011
Tareq Hasan Tareq Hasan

Dang! Seems like the update couldn’t happen. We are experiencing some firewall problem from our end, that might cause the problem.

Can you please manually download the latest version from our site and update? Remember to remove the plugin first from your site.

July 6, 2014 at 1:04 am 23012
Marc BUCK Marc BUCK This reply has been marked as private.
July 6, 2014 at 1:11 am 23013
Tareq Hasan Tareq Hasan

Uncaught ReferenceError: UPMETmce is not defined editor_plugin_tinymce_4.js:14

Uncaught ReferenceError: track is not defined speech2text.js:2
‘window.webkitStorageInfo’ is deprecated. Please use ‘navigator.webkitTemporaryStorage’ or ‘navigator.webkitPersistentStorage’ instead.

These two are the actual errors coming from various plugin.

July 6, 2014 at 1:18 am 23014
Marc BUCK Marc BUCK This reply has been marked as private.
July 6, 2014 at 1:19 am 23015
Marc BUCK Marc BUCK

Tareq, the txt to speech error is a chrome browser add on which i have now disabled.

July 6, 2014 at 1:29 am 23017
Tareq Hasan Tareq Hasan

So now it contains only one error: Uncaught ReferenceError: UPMETmce is not defined editor_plugin_tinymce_4.js:14

Hover on the editor_plugin_tinymce_4.js file name and it will show the location of the script. So you can pinpoint the plugin.

July 6, 2014 at 1:58 am 23018
Marc BUCK Marc BUCK

Not sure if I have done this right but this is what I get

Uncaught ReferenceError: UPMETmce is not defined editor_plugin_tinymce_4.js:14
(anonymous function) editor_plugin_tinymce_4.js:14
(anonymous function) theme.min.js:1
o tinymce.min.js?ver=4021-20140423:3
t theme.min.js:1
t theme.min.js:1
s theme.min.js:1
l.renderUI theme.min.js:1
N.init tinymce.min.js?ver=4021-20140423:8
(anonymous function) tinymce.min.js?ver=4021-20140423:8
(anonymous function) tinymce.min.js?ver=4021-20140423:4
o tinymce.min.js?ver=4021-20140423:3
m tinymce.min.js?ver=4021-20140423:4
(anonymous function) tinymce.min.js?ver=4021-20140423:4
n tinymce.min.js?ver=4021-20140423:3

July 6, 2014 at 2:00 am 23019
Marc BUCK Marc BUCK

Does the above suggest that it may be a theme conflict?

I have tried switching themes previously and I still have the same problem.

July 6, 2014 at 2:03 am 23020
Marc BUCK Marc BUCK

Ahhhh I think this is what you want Tareq

(function () {
“use strict”;

var UPMEShortcodesManager = function(editor, url) {

editor.addButton(‘upme_shortcodes_button’, function() {
return {
title: ”,
image: url,
type: ‘menubutton’,
icon : ‘upme_shortcodes_button’,
menu: [
{
text: UPMETmce.LoginRegistrationForms,
menu: [
{
text: UPMETmce.FrontRegistrationForm,
onclick: function(){
editor.insertContent(‘[upme_registration]’);
}
},
{
text: UPMETmce.RegFormCustomRedirect,
onclick: function(){
editor.insertContent(‘[upme_registration redirect_to=”http://url_here”%5D’);
}
},
{
text: UPMETmce.RegFormCaptcha,
onclick: function(){
editor.insertContent(‘[upme_registration captcha=yes]’);
}
},
{
text: UPMETmce.RegFormNoCaptcha,
onclick: function(){
editor.insertContent(‘[upme_registration captcha=no]’);
}
},
{
text: UPMETmce.FrontLoginForm,
onclick: function(){
editor.insertContent(‘[upme_login]’);
}
},
{
text: UPMETmce.SidebarLoginWidget,
onclick: function(){
editor.insertContent(‘[upme_login use_in_sidebar=yes]’);
}
},
{
text: UPMETmce.LoginFormCustomRedirect,
onclick: function(){
editor.insertContent(‘[upme_login redirect_to=”http://url_here”%5D’);
}
},
{
text: UPMETmce.LogoutButton,
onclick: function(){
editor.insertContent(‘[upme_logout]’);
}
},
{
text: UPMETmce.LogoutButtonCustomRedirect,
onclick: function(){
editor.insertContent(‘[upme_logout redirect_to=”http://url_here”%5D’);
}
},
]
},
{
text: UPMETmce.SingleProfile,
menu: [
{
text: UPMETmce.LoggedUserProfile,
onclick: function(){
editor.insertContent(‘[upme]’);
}
},
{
text: UPMETmce.LoggedUserProfileUserID,
onclick: function(){
editor.insertContent(‘[upme show_id=true]’);
}
},
{
text: UPMETmce.PostAuthorProfile,
onclick: function(){
editor.insertContent(‘[upme id=author]’);
}
},
{
text: UPMETmce.SpecificUserProfile,
onclick: function(){
editor.insertContent(‘[upme id=X]’);
}
},
]
},
{
text: UPMETmce.MultipleProfilesMemberList,
menu: [
{
text: UPMETmce.GroupSpecificUsers,
onclick: function(){
editor.insertContent(‘[upme group=user_id1,user_id2,user_id3,etc]’);
}
},
{
text: UPMETmce.AllUsers,
onclick: function(){
editor.insertContent(‘[upme group=all users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersCompactView,
onclick: function(){
editor.insertContent(‘[upme group=all view=compact users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersCompactViewHalfWidth,
onclick: function(){
editor.insertContent(‘[upme group=all view=compact width=2 users_per_page=10]’);
}
},
{
text: UPMETmce.UsersBasedUserRole,
onclick: function(){
editor.insertContent(‘[upme group=all role=subscriber users_per_page=10]’);
}
},
{
text: UPMETmce.AdministratorUsersOnly,
onclick: function(){
editor.insertContent(‘[upme group=all role=administrator users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersOrderedDisplayName,
onclick: function(){
editor.insertContent(‘[upme group=all order=asc orderby=display_name users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersOrderedPostCount,
onclick: function(){
editor.insertContent(‘[upme group=all order=desc orderby=post_count users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersOrderedRegistrationDate,
onclick: function(){
editor.insertContent(‘[upme group=all order=desc orderby=registered users_per_page=10]’);
}
},
{
text: UPMETmce.AllUsersUserID,
onclick: function(){
editor.insertContent(‘[upme group=all show_id=true users_per_page=10]’);
}
},
{
text: UPMETmce.SearchProfile,
onclick: function(){
editor.insertContent(‘[upme_search operator=OR]’);
}
},
{
text: UPMETmce.SearchCustomFieldFilters,
onclick: function(){
editor.insertContent(‘[upme_search filters=meta1,meta2,meta3]’);
}
},

]
},
{
text: UPMETmce.PrivateContentLoginRequired,
menu: [
{
text: UPMETmce.PrivateContentLoginRequired,
onclick: function(){
editor.insertContent(‘[upme_private]Place member only content here[/upme_private]’);
}
},

]
},
{
text: UPMETmce.ShortcodeOptionExamples,
menu: [
{
text: UPMETmce.HideUserStatistics,
onclick: function(){
editor.insertContent(‘[upme show_stats=no]’);
}
},
{
text: UPMETmce.HideUserSocialBar,
onclick: function(){
editor.insertContent(‘[upme show_social_bar=no]’);
}
},
{
text: UPMETmce.HalfWidthProfileView,
onclick: function(){
editor.insertContent(‘[upme width=2]’);
}
},
{
text: UPMETmce.CompactViewNoExtraFields,
onclick: function(){
editor.insertContent(‘[upme view=compact]’);
}
},
{
text: UPMETmce.CustomizedProfileFields,
onclick: function(){
editor.insertContent(‘[upme view=meta_id1,meta_id2,meta_id3]’);
}
},
{
text: UPMETmce.ShowUserIDProfiles,
onclick: function(){
editor.insertContent(‘[upme show_id=true]’);
}
},

]
},

]
}
});
};

tinymce.PluginManager.add( “UPMEShortcodes”, UPMEShortcodesManager );
})();

July 6, 2014 at 2:05 am 23021
Marc BUCK Marc BUCK

So it would definitely appear that UPME is the culprit which is odd because looking through previous support post other people do use this plugin with no problems.

July 6, 2014 at 2:34 am 23025
Marc BUCK Marc BUCK

From what I have read this problem is caused by one of the plugins using the default wordpress editor and not the tinymce editor.

I just need to find out which one it is. :0)

July 6, 2014 at 4:05 am 23028
Tareq Hasan Tareq Hasan

It’s not possible for us to find what is causing that error from here by just seeing the error codes.

Viewing 15 Posts - 1 through 15 (of 15 total)