<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot; - How-to and Troubleshooting				            </title>
            <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/</link>
            <description>wpDiscuz WordPress Comment Plugin Community. Support and Resources.</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 13 Sep 2026 02:13:41 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28969</link>
                        <pubDate>Mon, 14 Jul 2025 10:57:47 +0000</pubDate>
                        <description><![CDATA[I get it, but can you at least provide me code to remove the inline wpdiscuz produces, or tell me where to comment this out, so I can load it myself as an external file?]]></description>
                        <content:encoded><![CDATA[<p>I get it, but can you at least provide me code to remove the inline wpdiscuz produces, or tell me where to comment this out, so I can load it myself as an external file?</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>willGreeny</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28969</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28960</link>
                        <pubDate>Fri, 11 Jul 2025 10:31:06 +0000</pubDate>
                        <description><![CDATA[@willgreeny 
We do not provide any guarantee for the code shared by ChatGPT or other community members. You are free to test the code and see if it works for your case. However, we won’t be...]]></description>
                        <content:encoded><![CDATA[<p>@willgreeny </p>
<p>We do not provide any guarantee for the code shared by ChatGPT or other community members. You are free to test the code and see if it works for your case. However, we won’t be able to offer support for any issues that may arise as a result of using it.<br /><br />The answer I’ve provided was discussed with the team, and there’s nothing more I can add at this point:   <a class="c-link" href="https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28952" target="_blank" rel="noopener noreferrer" data-stringify-link="https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28952" data-sk="tooltip_parent">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28952</a></p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28960</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28952</link>
                        <pubDate>Wed, 09 Jul 2025 10:20:52 +0000</pubDate>
                        <description><![CDATA[Well I mean I am not a coder but I asked ChatGPT and in 10 seconds it produced this for all inline:add_action(&#039;template_redirect&#039;, function () {ob_start(function ($html) {// Match all &lt;st...]]></description>
                        <content:encoded><![CDATA[<p>Well I mean I am not a coder but I asked ChatGPT and in 10 seconds it produced this for all inline:<br /><br />add_action('template_redirect', function () {<br />ob_start(function ($html) {<br />// Match all &lt;style&gt; tags (in head or body)<br />preg_match_all('/&lt;style.*?&gt;(.*?)&lt;\/style&gt;/is', $html, $matches);<br /><br />if (!empty($matches)) {<br />$css = implode("\n\n", $matches);<br /><br />// Save to a CSS file (e.g., /wp-content/uploads/inline-css.css)<br />$file_path = WP_CONTENT_DIR . '/uploads/inline-css.css';<br />file_put_contents($file_path, $css);<br /><br />// Remove all inline &lt;style&gt; blocks<br />$html = preg_replace('/&lt;style.*?&gt;.*?&lt;\/style&gt;/is', '', $html);<br /><br />// Add link to new external CSS file in head<br />$link_tag = '&lt;link rel="stylesheet" href="' . content_url('uploads/inline-css.css') . '"&gt;';<br />$html = preg_replace('/&lt;\/head&gt;/', $link_tag . "\n&lt;/head&gt;", $html);<br />}<br /><br />return $html;<br />});<br />});<br /><br />So I think with 2 minutes of your team looking at it, you could provide something useful?</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>willGreeny</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28952</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28951</link>
                        <pubDate>Wed, 09 Jul 2025 10:18:45 +0000</pubDate>
                        <description><![CDATA[@willgreeny 
The team has added this to our to-do list. We cannot provide an exact ETA for when it will be implemented, but I’ll update this topic once it’s included.I’m sorry, but there’s ...]]></description>
                        <content:encoded><![CDATA[<p>@willgreeny </p>
<p>The team has added this to our to-do list. We cannot provide an exact ETA for when it will be implemented, but I’ll update this topic once it’s included.<br /><br />I’m sorry, but there’s currently no solution. If you comment it out, the entire CSS will be commented out.</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28951</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28950</link>
                        <pubDate>Wed, 09 Jul 2025 09:47:52 +0000</pubDate>
                        <description><![CDATA[I appreciate that, but you can at least tell me where the inline code is being injected - so I at least comment it out, or better yet, some php that blocks it from loading?]]></description>
                        <content:encoded><![CDATA[<p>I appreciate that, but you can at least tell me where the inline code is being injected - so I at least comment it out, or better yet, some php that blocks it from loading?</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>willGreeny</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28950</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28949</link>
                        <pubDate>Wed, 09 Jul 2025 09:46:55 +0000</pubDate>
                        <description><![CDATA[@willgreeny 
I&#039;m sorry, but currently there is not any solution for this.]]></description>
                        <content:encoded><![CDATA[<p>@willgreeny </p>
<p>I'm sorry, but currently there is not any solution for this. </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28949</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28947</link>
                        <pubDate>Tue, 08 Jul 2025 10:36:09 +0000</pubDate>
                        <description><![CDATA[My colors are set in stone and never going to change, neither are any of the settings in wpdiscuz - can you provide some code to disable it inline and I&#039;ll load the same CSS as an external f...]]></description>
                        <content:encoded><![CDATA[<p>My colors are set in stone and never going to change, neither are any of the settings in wpdiscuz - can you provide some code to disable it inline and I'll load the same CSS as an external file?</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>willGreeny</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28947</guid>
                    </item>
				                    <item>
                        <title>RE: Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28946</link>
                        <pubDate>Tue, 08 Jul 2025 10:34:29 +0000</pubDate>
                        <description><![CDATA[Hi,
This inline CSS is dynamically generated, so it uses inline logic. For example, if you change a color, the CSS will update accordingly. It cannot be stored in a separate file, as doing ...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>This inline CSS is dynamically generated, so it uses inline logic. For example, if you change a color, the CSS will update accordingly. It cannot be stored in a separate file, as doing so would break the logic.</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28946</guid>
                    </item>
				                    <item>
                        <title>Inline of style &quot;wpdiscuz-frontend-css-inline-css&quot;</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28945</link>
                        <pubDate>Mon, 07 Jul 2025 10:54:01 +0000</pubDate>
                        <description><![CDATA[Hi there,
I notice there is a 13kb roughly of inline CSS called &quot;wpdiscuz-frontend-css-inline-css&quot; injected.
 
I cannot remove this and ultimately do not want this to be loaded inline. In...]]></description>
                        <content:encoded><![CDATA[<p>Hi there,</p>
<p>I notice there is a 13kb roughly of inline CSS called "<span>wpdiscuz-frontend-css-inline-css" injected.</span></p>
<p> </p>
<p>I cannot remove this and ultimately do not want this to be loaded inline. In fact, it doesn't make sense for comments to load anything inline, since it is not above the fold, or cacheable.</p>
<p> </p>
<p>How can I remove this specifically and other CSS so I can then manually load this at the footer as an external file?</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>willGreeny</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/inline-of-style-wpdiscuz-frontend-css-inline-css/#post-28945</guid>
                    </item>
							        </channel>
        </rss>
		