Hey Elfsight Friends!
Does anyone know anything about how to fix this weird glitch in the widget? Whenever you select the first category section, the first project will sometimes get hidden and toggled away.
Hey Elfsight Friends!
Does anyone know anything about how to fix this weird glitch in the widget? Whenever you select the first category section, the first project will sometimes get hidden and toggled away.
Hi there, @lwaterskatz
I am so sorry about this issue!
I’ve forwarded it to the devs and will let you know once it’s fixed
It’s okay @Max! Thank you so much for everything ya’ll do and working so hard to give us awesome plugins and service!
@lwaterskatz While our devs are working on a global solution, we’ve applied a temporary fix to your widget using this code in the Custom JS field on the Style tab of your widget’s settings:
const categoriesItemSelector = '.eapp-portfolio-project-list-categories-item';
document.addEventListener('click', (e) => {
if (e.target.closest(categoriesItemSelector)) {
requestAnimationFrame(() => {
window.dispatchEvent(new Event('resize'));
});
}
});
Please check it out and let me know if everything is fine now
Once the global solution is released, I’ll update you here right away!