xberserker
Member
Posted 4 months ago #
After I enabled the plugin "CubePoints"
http://wordpress.org/extend/plugins/cubepoints/
I'm no longer able to switch between comments and trackbacks. The quote feature also doesn't show any more. See on this page:
http://www.ps3blog.net/2009/07/23/castle-crashers-announc-for-ps3/?theme=fusion
Seems like it has something to do both fusion and cubepoints using jquery
xberserker
Member
Posted 4 months ago #
Looking at the error console in firefox I get this: (which only happens when the CubePoints plugin is enabled).
Error: jQuery("#secondary-tabs").minitabs is not a function
Source File: http://www.ps3blog.net/2009/07/23/castle-crashers-announc-for-ps3/
Line: 152
Line 152 is this
jQuery('#secondary-tabs').minitabs(333, 'slide');
This references this in the themes .js file
jQuery.fn.minitabs = function(speed,effect) {
id = "#" + this.attr('id')
jQuery(id + ">DIV:gt(0)").hide();
jQuery(id + ">UL>LI>A:first").addClass("current");
jQuery(id + ">UL>LI>A").click(
function(){
jQuery(id + ">UL>LI>A").removeClass("current");
jQuery(this).addClass("current");
jQuery(this).blur();
var re = /([_\-\w]+$)/i;
var target = jQuery('#' + re.exec(this.href)[1]);
var old = jQuery(id + ">DIV");
switch (effect) {
case 'fade':
old.fadeOut(speed).fadeOut(speed);
target.fadeIn(speed);
break;
case 'slide':
old.slideUp(speed);
target.fadeOut(speed).fadeIn(speed);
break;
default :
old.hide(speed);
target.show(speed)
}
return false;
}
);
}
xberserker
Member
Posted 4 months ago #
Really wish I could edit my posts all well.
I actually exchanged some e-mails with the CubePoints developers and they fixed the issue! :D They said when the next official release is out. Which I assume would be 1.2.5, the fix will be included.