Hi,
I believe the issue is with the theme, not the plugins in this case. I have run a few tests, and in every case there is a duplicate at the bottom, even if the plugin is set to be displayed at the top. I guess that perhaps the ‘the_content’ filter might be executed on multiple elements on the same page, thus giving the problem for both plugins.
To bypass the issue, I have made the following changes:
– I changed the plugin options to display at the top of the article
– Then used this custom CSS here, to disable the first occurrence:
div.rpp:first-child {
display: none !important;
}
Now only the first instance should be visible, at the bottom of the blog content.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)

