<?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>
									Conflict with WP 6.4.3 - How-To and Troubleshooting				            </title>
            <link>https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 15 Mar 2026 07:27:48 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Conflict with WP 6.4.3</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38368</link>
                        <pubDate>Thu, 15 Feb 2024 09:14:33 +0000</pubDate>
                        <description><![CDATA[Please note that all questions regarding wpDiscuz plugins should be directed to the wpDiscuz.com forum. Here, we exclusively provide support for paid addons.]]></description>
                        <content:encoded><![CDATA[<p><span>Please note that all questions regarding wpDiscuz plugins should be directed to the </span><a href="https://wpdiscuz.com/community/" target="_blank" rel="nofollow noopener">wpDiscuz.com forum</a><span>. Here, we exclusively provide support for paid addons.</span></p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38368</guid>
                    </item>
				                    <item>
                        <title>RE: Conflict with WP 6.4.3</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38366</link>
                        <pubDate>Thu, 15 Feb 2024 00:42:58 +0000</pubDate>
                        <description><![CDATA[Actually, I just found the problem was with another piece of code, not the one I posted in my original post!
Any idea why this is happening and how to fix it? 
Here&#039;s what&#039;s causing proble...]]></description>
                        <content:encoded><![CDATA[<p>Actually, I just found the problem was with another piece of code, not the one I posted in my original post!</p>
<p>Any idea why this is happening and how to fix it? </p>
<p>Here's what's causing problems with WP 6.4.3 - <em>Lazy Load wpDiscuz v7 css/js (generic3)</em></p>
<pre contenteditable="false">add_action('wp', 'lazy_generic_wpd');
function lazy_generic_wpd() {
	if ( is_user_logged_in() ) {return;}
	$plugin = "wpdiscuz/class.WpdiscuzCore.php";

	include_once(ABSPATH.'wp-admin/includes/plugin.php');
	if ( ! function_exists('is_plugin_active') || ! is_plugin_active($plugin) ) {return;}

	if ( ! class_exists('mill_LazyLoad') ) { return; }
	//if ( isWPRocketNocacheURL() ) { return; }

	global $post;

    /* if ( ( ! empty($post) &amp;&amp; is_a($post, 'WP_Post') &amp;&amp; ! has_shortcode( $post-&gt;post_content, 'put_wpgm' ) ) ||
		! is_singular() ) {
	//if ( ( ! has_shortcode( $post-&gt;post_content, 'put_wpgm' ) ) ) {
	//if ( ! empty($post) &amp;&amp; is_a($post, 'WP_Post') &amp;&amp; (strpos($post-&gt;post_content,'cp_calculatedfieldsf') !== false) ) {
	if ( ( ! empty($post) &amp;&amp; is_a($post, 'WP_Post') &amp;&amp; ! has_shortcode( $post-&gt;post_content, 'ctct' ) ) ) {

		//remove_action( 'wp_enqueue_scripts', 'wp_review_enqueue', 12 );
			//global $CPCFF_FORM;
			//global $CPCFF_MAIN;
			//remove_action( 'init', array( $CPCFF_FORM::instance(), 'init' ), 1 );
			//remove_action( 'init', array( $CPCFF_MAIN::instance(), 'init' ), 1 );

		add_action('wp_enqueue_scripts', function(){
			wp_deregister_style('ctct_form_styles');
			wp_deregister_script('recaptcha-v2');
			wp_deregister_script('ctct_frontend_forms');
		}, 99999999);

		//add_action('wp_footer','start_buff_sdm', 0);
		//add_action('wp_footer','end_buff_sdm', 99998); */

	//} else {

		// 2020-11-06
		add_action('wp_footer', function(){
			echo "&lt;style&gt;#wpd-bubble-wrapper #wpd-bubble-all-comments-count{color:#1DB99A}#wpd-bubble-wrapper&gt;div{background-color:#1DB99A}&lt;/style&gt;";
		}, 999);
	
		new mill_LazyLoad (array(
			"plugin"			=&gt; $plugin,
			"prefix"			=&gt; "wpd",
			"scrollthreshold"	=&gt; "444",
			"trigger"			=&gt; array(	
				"trigger"			=&gt; 'inview',		// 'inview', 'click', null
				"loadthreshold"		=&gt; "2223",
				"selector"			=&gt; '#wpdcom,#wpcomm',	// eg '.container'
			),
			"cssJsArray"		=&gt; array(
				//'\/fancybox\/'
				'\/wpdiscuz\/themes\/default\/style\.css',
				'\/wpdiscuz\/assets\/third-party\/font-awesome-5\.(.*)\/css\/fa\.min\.css',
				'\/wpdiscuz\/assets\/css\/wpdiscuz-combo'
			),
			"extraJsArray"		=&gt; ,

			// footer css
			"cssArray"		=&gt; array(
				//'\/plugins\/super-socializer\/js\/'
			),

			"rootMargin"		=&gt; '1050',
			//"fetchJSfilesAsync"	=&gt; true,
			"fetchJSfilesAsync"	=&gt; false,
		));

	// }

}
</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>adri</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38366</guid>
                    </item>
				                    <item>
                        <title>Conflict with WP 6.4.3</title>
                        <link>https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38365</link>
                        <pubDate>Thu, 15 Feb 2024 00:27:02 +0000</pubDate>
                        <description><![CDATA[Hi, I found the problem causing errors with the WPDiscuz plugin when using the latest version of WP  6.4.3.
 
I disabled and activated all plugins one by one to figure this out. The proble...]]></description>
                        <content:encoded><![CDATA[<div>Hi, I found the problem causing errors with the WPDiscuz plugin when using the latest version of WP  6.4.3.</div>
<div> </div>
<div>I disabled and activated all plugins one by one to figure this out. The problem is the PHP code I added to the code snippets plugin when customizing my theme a few years ago. Somehow now with this new WP 6.4.3 version, it’s causing problems. But it's a super simple line of code (see attachment). <span>Most of that code is an echo statement that uses an action that Discuz still says exists.</span></div>
<div> </div>
<div><span>Is there anything that Discuz can think of that may have changed that would make that code ineffective when I update the core?</span></div>
<div> </div>
<div>When I update to WP 6.4.3, Discuz doesn't function properly. The problems I get with WP 6.4.3 are:</div>
<div> </div>
<div>1. I can’t open and close the replies when clicking on the reply link. The stying also changes floating to the right. See screenshot. </div>
<div>2. I have also noticed before that I can’t seem to reply to comments.</div>
<div>3. And the "add photo” image under the reply text box is replaced and or disappears.</div>
<div> </div>
<div>Everything works fine with the earlier version of WP 6.3.2.</div>
<div> </div>
<div>Thank you and please let me know if you can think of a fix.</div>
<pre contenteditable="false">add_filter( 'wpdiscuz_mu_upload_icon', 'ah_comment_image_icon' );
/**
 * Replace Image upload icon with Camera icon
 *
 * @param $icon
 *
 * @return string
 * @since 1.0.1
 *
 */
function ah_comment_image_icon( $icon ) {
	$icon = 'fas fa-camera';

	return $icon;
}

//* Add text above comments for Wpdiscuz plugin
add_action('wpdiscuz_comment_form_before', function() {
   echo '&lt;span style="font-size:20px; text-transform: uppercase;padding-right: 5px;font-weight: 400;"&gt;' . __('Add a comment &amp; photo -', 'wpdiscuz') . '&lt;/span&gt;' . '&lt;span style="font-size:17px; font-family: Poppins, sans-serif; letter-spacing: 1.2px;"&gt;' . __('Ask questions, share your feedback and photos!', 'wpdiscuz') . '&lt;/span&gt;';
});
</pre>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/how-to-and-troubleshooting/">How-To and Troubleshooting</category>                        <dc:creator>adri</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/how-to-and-troubleshooting/conflict-with-wp-6-4-3/#post-38365</guid>
                    </item>
							        </channel>
        </rss>
		