Forum Replies Created

Viewing 10 Topics - 1 through 10 (of 10 total)
Author Posts
July 6, 2014 at 2:34 am in reply to: Plugin conflicts driving me nuts. 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 2:05 am in reply to: Plugin conflicts driving me nuts. 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:03 am in reply to: Plugin conflicts driving me nuts. 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:00 am in reply to: Plugin conflicts driving me nuts. 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 1:58 am in reply to: Plugin conflicts driving me nuts. 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 1:19 am in reply to: Plugin conflicts driving me nuts. 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:18 am in reply to: Plugin conflicts driving me nuts. 23014
Marc BUCK Marc BUCK This reply has been marked as private.
July 6, 2014 at 1:04 am in reply to: Plugin conflicts driving me nuts. 23012
Marc BUCK Marc BUCK This reply has been marked as private.
July 6, 2014 at 12:51 am in reply to: Plugin conflicts driving me nuts. 23010
Marc BUCK Marc BUCK This reply has been marked as private.
July 5, 2014 at 11:46 pm in reply to: Plugin conflicts driving me nuts. 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.

Viewing 10 Topics - 1 through 10 (of 10 total)