Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Buddypress Template Pack issue


modemlooper
Moderator

@modemlooper

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’
}
})
});

Skip to toolbar