See if in the file jquery.qtip.style.js in the code shown below change $ to jquery. Might be a conflict.
$(document).ready(function() {
$(‘#subfeatures li a[title]’).qtip({
show: ‘mouseover’,
hide: ‘mouseout’,
position: {
corner: {
target: ‘topMiddle’,
tooltip: ‘topMiddle’,
},
adjust: {
x: 0, y: -40
}
},
style: {
width: 180,
padding: 5,
background: ‘#434240’,
color: ‘#f2efe8’,
textAlign: ‘center’,
border: {
width: 5,
radius: 5,
color: ‘#434240’
},
tip: ‘bottomMiddle’,
name: ‘dark’
}
})
});
Thanks for the reply modemlooper. That got us halfway there. There is now a very small popup when you mouse over the thumbnail, but still not the nice styled box that should be there (which you can view in the demo theme).
Any other ideas?
Thanks!
Is this only happening when you activate BP? I’m seeing a lot of plugins calling various .js files.
I’ve disabled all plugins and re-enabled them one at a time to figure out which is the culprit. Buddypress itself isn’t causing the issue. It only happens when ‘Buddypress Template Pack’ is enabled.
Did you try to ask the theme developer?
Most theme developers won’t help when the issue is caused by a plugin, but I’ll give it a try. If anyone else has any ideas, please weigh in just in case.
If you can deactivate all plugins and then ONLY activate template pack. Try that. The javascript I posted from your theme could be funky with other javascript. Not sure why they have CSS in it instead of having it in the css file.