This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: How to fix a bug in the plugin?

#12115
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you for the details, I was able to find the problem. The plugin was not initalizing correctly, because the script was moved to the footer. I’ve corrected the problem via the code and will include this fix in the upcoming release.

I have also added the following custom CSS to adjust the items width on smaller screens (below 720px -> 2 columns and below 480px -> 1 column):

[html]@media (max-width: 720px) {
div div[id^=relatedpostspro_0_].rpp_isotope .rpp_item {
width: 50% !important;
}
}

@media (max-width: 480px) {
div div[id^=relatedpostspro_0_].rpp_isotope .rpp_item {
width: 100% !important;
}
}[/html]