Yeah @kurulumu-Net you can change port in config.json in one of the NodeBBs and change to the same port in the proxy-pass part of the corresponding nginx config.
Default port is 4567, one will need to be changed.
sample
css
@media screen and (max-width:1200px) {
.affix,
.affix-bottom {
display: none;
}
}
.affix-top {
position: relative;
}
.affix {
top: 70px;
}
.affix {
width: 263px;
}
widget container
<div data-spy="affix" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{title}}</h3></div>
<div class="panel-body">{{body}}</div></div>
JS: /Custom JS tab
function renderWidgets() {
$('[data-spy="affix"]').affix({
offset: {
top: 400,
bottom: function () {
return (this.bottom = $('.footer').outerHeight(true))
}
}
});
}
if (window.jQuery) {
renderWidgets();
$(window).on('action:ajaxify.end', renderWidgets);
}
@yari said in sticky sidebar widgets:
$(window).on('action:ajaxify.end', function () {
$('[data-spy="affix"]').affix({
offset: {
top: 400,
bottom: function () {
return (this.bottom = $('.footer').outerHeight(true))
}
}
});
});
Where are you placing this? Inside the widget? or the customJS tab? You might have to change it to
function renderWidgets() {
$(window).on('action:ajaxify.end', function () {
$('[data-spy="affix"]').affix({
offset: {
top: 400,
bottom: function () {
return (this.bottom = $('.footer').outerHeight(true))
}
}
});
});
}
if (window.jQuery) {
renderWidgets();
} else {
window.addEventListener('load', renderWidgets);
}