<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Click &#34;Show results&#34; and page get scrambled</title>
		<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled</link>
		<description>Gravity Support Forums Topic: Click &quot;Show results&quot; and page get scrambled</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 18:40:41 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/click-show-results-and-page-get-scrambled" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-144937</link>
			<pubDate>Fri, 08 Feb 2013 23:44:12 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">144937@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@glbranding, please begin a new topic for your issue.  Explain what is happening.  Let us know what version of WordPress, Gravity Forms and the Polls add-on you're using, and share a URL to the page on your site where this is visible.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>glbranding on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-144924</link>
			<pubDate>Fri, 08 Feb 2013 22:22:35 +0000</pubDate>
			<dc:creator>glbranding</dc:creator>
			<guid isPermaLink="false">144924@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HOW DID YOU FIX IT!?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Steve Henty on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-97236</link>
			<pubDate>Fri, 30 Nov 2012 07:16:06 +0000</pubDate>
			<dc:creator>Steve Henty</dc:creator>
			<guid isPermaLink="false">97236@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Johan, I've sent you an email.&#60;br /&#62;
Steve
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dansod on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-97210</link>
			<pubDate>Fri, 30 Nov 2012 05:13:32 +0000</pubDate>
			<dc:creator>dansod</dc:creator>
			<guid isPermaLink="false">97210@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for taking time with this.&#60;/p&#62;
&#60;p&#62;Johan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-97073</link>
			<pubDate>Thu, 29 Nov 2012 19:01:21 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97073@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The developer of the polls add-on will take a look at this for you and update the topic tomorrow.  Thank you for your patience.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dansod on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-96847</link>
			<pubDate>Thu, 29 Nov 2012 05:29:35 +0000</pubDate>
			<dc:creator>dansod</dc:creator>
			<guid isPermaLink="false">96847@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I tried the &#60;code&#62;[raw]&#60;/code&#62; code but it didn't work. Nor did the &#60;code&#62;[noformat]&#60;/code&#62; code. I also deactivated all plug ins but that didn't do it either. I couldn't find the code below in the shortcodes.php WP file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_formatter($content) {
    $new_content = &#38;#39;&#38;#39;;
    $pattern_full = &#38;#39;{(\[raw\].*?\[/raw\])}is&#38;#39;;
    $pattern_contents = &#38;#39;{\[raw\](.*?)\[/raw\]}is&#38;#39;;
    $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);

    foreach ($pieces as $piece) {
        if (preg_match($pattern_contents, $piece, $matches)) {
            $new_content .= $matches[1];
            } else {
            $new_content .= wptexturize(wpautop($piece));
            }
        }
return $new_content;
}

remove_filter(&#38;#39;the_content&#38;#39;, &#38;#39;wpautop&#38;#39;);
remove_filter(&#38;#39;the_content&#38;#39;, &#38;#39;wptexturize&#38;#39;);
add_filter(&#38;#39;the_content&#38;#39;, &#38;#39;my_formatter&#38;#39;, 99);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;so I couldn't comment it out, as proposed in some of the posts. The plot thickens. Probably GF is clashing with my theme somehow.&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;Johan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-96669</link>
			<pubDate>Wed, 28 Nov 2012 17:44:53 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">96669@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There is some additional markup being added to the Gravity Forms shortcode output.  This is typically done by themes which include the [raw] shortcode.  Looks like you're using Modernize, which is available from Themeforest.  Themeforest themes typically include the [raw] shortcode and it causes all sorts of problems.  Read more here:  &#60;a href=&#34;http://www.gravityhelp.com/forums/tags/raw&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/tags/raw&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The quick fix is to wrap the [gravityform] shortcode in the [raw] shortcode.  See if that takes care of the closing div problem.&#60;/p&#62;
&#60;p&#62;If it does, then we can work on your other CSS issues.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dansod on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-96434</link>
			<pubDate>Wed, 28 Nov 2012 04:14:29 +0000</pubDate>
			<dc:creator>dansod</dc:creator>
			<guid isPermaLink="false">96434@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;thanks for the help.&#60;/p&#62;
&#60;p&#62;Here is the url. The site is under development, but I hope you can reach it anyway. The test poll is at the bottom:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://nordicgreen.cag.se/sv/bli-elkund/prishistorik/&#34; rel=&#34;nofollow&#34;&#62;http://nordicgreen.cag.se/sv/bli-elkund/prishistorik/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Also, I inserted the widget version of the poll on this page:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://nordicgreen.cag.se/sv/fornybar-energi/allt-om-elmarknaden/hur-fungerar-elmarknaden/&#34; rel=&#34;nofollow&#34;&#62;http://nordicgreen.cag.se/sv/fornybar-energi/allt-om-elmarknaden/hur-fungerar-elmarknaden/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There you see how the plug-in &#34;picks up&#34; the arrows and the &#60;code&#62;&#38;lt;hr&#38;gt;&#60;/code&#62; code from the theme, although I guess it shouldn't. Luckily, the widget version doesn't screw up the page when you click on it, but the lines and arrows make it look ugly. &#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Johan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-96210</link>
			<pubDate>Tue, 27 Nov 2012 12:30:48 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">96210@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there, can you link to your form without the extra end div call so we can take a look at what is happening?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dansod on "Click &#34;Show results&#34; and page get scrambled"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/click-show-results-and-page-get-scrambled#post-96168</link>
			<pubDate>Tue, 27 Nov 2012 10:50:01 +0000</pubDate>
			<dc:creator>dansod</dc:creator>
			<guid isPermaLink="false">96168@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I use this shortcode to display a poll on a WP page:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
[gravityform action=&#38;quot;polls&#38;quot; id=&#38;quot;25&#38;quot; mode=&#38;quot;poll&#38;quot; style=&#38;quot;red&#38;quot; show_results_link=&#38;quot;true&#38;quot; display_results=&#38;quot;true&#38;quot; percentages=&#38;quot;true&#38;quot; counts=&#38;quot;true&#38;quot;]&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All looks good until I hit the &#34;Show results&#34;  button. When the page reloads the whole page is suddenly scrambled with content displaced all over the page. I've found it's due to a missing &#60;code&#62;&#38;lt;/div&#38;gt;&#60;/code&#62;. If I place one after the shortcode the page looks better:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
[gravityform action=&#38;quot;polls&#38;quot; id=&#38;quot;25&#38;quot; mode=&#38;quot;poll&#38;quot; style=&#38;quot;red&#38;quot; show_results_link=&#38;quot;true&#38;quot; display_results=&#38;quot;true&#38;quot; percentages=&#38;quot;true&#38;quot; counts=&#38;quot;true&#38;quot;]&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But now the side menu on the page disappears! I'm using a theme (Modernize) on top of WP. This is probably the problem. But what to do? &#60;/p&#62;
&#60;p&#62;I also have problem with the GF widget that uses the unordered list ( &#60;code&#62;&#38;lt;ul&#38;gt;&#60;/code&#62; ) code from the theme's css, which looks bad.&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Johan
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
