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

Reply To: Displays Twice

#19945
Ernest MarcinkoErnest Marcinko
Keymaster

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:
[html]div.rpp:first-child {
display: none !important;
}[/html]

Now only the first instance should be visible, at the bottom of the blog content.