Posted by rtp2design on February 5, 2013 at 11:04pm
I've probably gone through 50 threads relating to the problem, but have yet to find my answer.
This is being rendered the Main Content region of my page:
http://s8.postimage.org/okmoz2unp/drupal_problem.png
I've tried combing through my panels and views, both enabled, and disabled, and have been unsuccesful.
Anyone have any debugging advice?
Thanks.
Comments
Workaround
I ended up just using logic in the .tpl file.
For me, the string was rendering in 'Main Page Content', which is where a views page outputs its content by default. Since my front page was built with custom blocks and renders nothing but the problematic artifact in that region, I wrapped it in the following logic to set the div container to hidden:
<div id="content-body" class="row-fluid" <?php if ($front_page) print('style="display:none;"') ?>><?php print render($page['content']); ?> <?php print $feed_icons; ?> </div>I did this because I needed content-body to display on all of my views pages, else I would have hard-coded the div to 'display:hidden'.
Didn't fix my problem, but fixed my situation.