Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Brandon Brigham
3,716 PointsReview feed is acting weird
Hello,
A site I'm working on:
http://valleyoakca.com/tenants/
If you notice on the right sidebar there's a 'Testimonials' section. When scrolling through the reviews the text doubles-up (not sure how else to explain it) and the text gets jumbled up.
Any ideas on how to fix?
Thanks!
2 Answers

Daniel Newman
Courses Plus Student 10,715 PointsYou have twice in your code this part
<iframe src="http://www.reputation.com/embed_reviews/valley-oak-property-management-modesto?h=500&w=300&c=&f=&l=&p=20" style="height: 500px; width: 300px; overflow: hidden; position: absolute; border: none;"></iframe>
<iframe src="http://www.reputation.com/embed_reviews/valley-oak-property-management-modesto?h=500&w=300&c=&f=&l=&p=20" style="height: 500px; width: 300px; overflow: hidden; position: absolute; border: none;"></iframe>
Just remove one of them and everything will be ok.

Daniel Newman
Courses Plus Student 10,715 PointsHonestly, it's not looking as Wordpress plugin problem. If you disable js on your page it will not produce Testimonial area. So that is looking like you initialize JS-plugin twice on page.
window.reputation.reviewWidgetController.init(widgetParameters);
Twice on page. In page and after body closing tag.
If you type the same code in console it will create 3rd overlaying container. It's not so easy to find "why" without access to the Theme and so on.
Brandon Brigham
3,716 PointsBrandon Brigham
3,716 PointsHey Daniel thanks for the reply - the code I've used in the widget area of WordPress is shown below - for some reason its showing up twice when inspecting the element I suppose. Any ideas?