Home › Forums › Product Support Forums › Related Posts Pro for WordPress Support › How to fix a bug in the plugin? › Reply To: How to fix a bug in the plugin?
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]