<?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>
									Comments Count - WooDiscuz - WooCommerce Comments				            </title>
            <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 13 Apr 2026 07:17:55 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25893</link>
                        <pubDate>Thu, 19 Nov 2020 08:15:49 +0000</pubDate>
                        <description><![CDATA[Yes, the changes will be included in the next version.]]></description>
                        <content:encoded><![CDATA[<p>Yes, the changes will be included in the next version. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25893</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25884</link>
                        <pubDate>Wed, 18 Nov 2020 09:07:19 +0000</pubDate>
                        <description><![CDATA[Great, that fixes the problem. Thanks!
It would be nice to fix it in a future update.
Thank you again!]]></description>
                        <content:encoded><![CDATA[<p>Great, that fixes the problem. Thanks!</p>
<p>It would be nice to fix it in a future update.</p>
<p>Thank you again!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>yoannc</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25884</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25883</link>
                        <pubDate>Wed, 18 Nov 2020 08:28:48 +0000</pubDate>
                        <description><![CDATA[@yoannc,
Please follow the steps below:
1. Open the wp-content/plugins/woodiscuz/wpc.php file
2. Find the 219 line
3. Replace the code in the line with this one:
return _e(&#039;Reviews&#039;, &#039;w...]]></description>
                        <content:encoded><![CDATA[<p>@yoannc,</p>
<p>Please follow the steps below:</p>
<p>1. Open the <span style="color: #0000ff"><em>wp-content/plugins/woodiscuz/wpc.php</em></span> file</p>
<p>2. Find the 219 line</p>
<p>3. Replace the code in the line with this one:</p>
<pre>return _e('Reviews', 'woocommerce') . ' (' . $this-&gt;reviews_count . ')';</pre>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25883</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25875</link>
                        <pubDate>Tue, 17 Nov 2020 19:43:53 +0000</pubDate>
                        <description><![CDATA[@astghik
After some tests, it is possible to rename the &quot;Description&quot; and &quot;Additional Information&quot; tabs with the hooks provided by WooCommerce but not with the &quot;Reviews&quot; tab.
add_filter( &#039;...]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p>
<p>After some tests, it is possible to rename the "Description" and "Additional Information" tabs with the hooks provided by WooCommerce but not with the "Reviews" tab.</p>
<pre>add_filter( 'woocommerce_product_tabs', 'rename_description_tab' );<br />function rename_description_tab( $tabs ) {<br />$tabs = 'About';<br />return $tabs;<br />}</pre>
<p>Renaming "Description" works in all cases.</p>
<pre>add_filter( 'woocommerce_product_tabs', 'rename_additional_info_tab' );<br />function rename_additional_info_tab( $tabs ) {<br />$tabs = 'More Info';<br />return $tabs;<br />}</pre>
<p>Renaming "Additional Info" works in all cases.</p>
<pre>add_filter( 'woocommerce_product_tabs', 'rename_reviews_tab' );<br />function rename_reviews_tab( $tabs ) {<br />global $product;<br />$tabs = 'Customer Reviews (' . $product-&gt;get_review_count() . ')';<br />return $tabs;<br />}</pre>
<p>Renaming "Reviews (x)" <span style="text-decoration: underline">only works when WooDiscuz is disabled</span>.</p>
<pre>add_filter( 'woocommerce_product_tabs', 'replace_reviews_tab' );<br />function replace_reviews_tab( $tabs ) {<br />$tabs = str_replace( 'Reviews', 'Customer Reviews', $tabs );<br />return $tabs;<br />}</pre>
<p>Replace "Reviews" <span style="text-decoration: underline">only works when WooDiscuz is disabled</span>.</p>
<p>I can't use the method described in my previous post because I am getting new issues.</p>
<p>I need a solution urgently enough.</p>
<p>Thanks.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>yoannc</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25875</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25863</link>
                        <pubDate>Tue, 17 Nov 2020 09:09:37 +0000</pubDate>
                        <description><![CDATA[I found a temporary solution, not the cleanest, but functional:
/*** Remove product data tabs*/add_filter( &#039;woocommerce_product_tabs&#039;, &#039;woo_remove_product_tabs&#039;, 98 );function woo_remove_pr...]]></description>
                        <content:encoded><![CDATA[<p>I found a temporary solution, not the cleanest, but functional:</p>
<pre>/**<br />* Remove product data tabs<br />*/<br />add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );<br /><br />function woo_remove_product_tabs( $tabs ) {<br /><br />// unset( $tabs ); // Remove the description tab<br />unset( $tabs ); // Remove the reviews tab<br />unset( $tabs ); // Remove the additional information tab<br /><br />return $tabs;<br />}<br /><br />/**<br />* Add a custom product data tab<br />*/<br />add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );<br />function woo_new_product_tab( $tabs ) {<br /><br />// Adds the new tab<br /><br />$tabs = array(<br />'title' =&gt; __( 'Reviews (' . $product-&gt;get_review_count() . ')', 'woocommerce' ),<br />'priority' =&gt; 50,<br />'callback' =&gt; 'woo_new_product_tab_content'<br />);<br /><br />return $tabs;<br /><br />}<br />function woo_new_product_tab_content() {<br /><br />// The new tab content<br /><br />echo do_shortcode('');<br /><br />}</pre>
<p>I am waiting if you have a better solution.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>yoannc</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25863</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25856</link>
                        <pubDate>Mon, 16 Nov 2020 16:54:28 +0000</pubDate>
                        <description><![CDATA[@astghik
I corrected the Discussions tab of the plugin by leaving a last space after the name of the Disscussion Tab Title field: &quot;Discussions &quot;
Regarding the Reviews tab, it&#039;s your plugin...]]></description>
                        <content:encoded><![CDATA[<p>@astghik</p>
<p>I corrected the Discussions tab of the plugin by leaving a last space after the name of the Disscussion Tab Title field: "Discussions "</p>
<p>Regarding the Reviews tab, it's your plugin that removes the space. I noticed it after deactivating / reactivating WooDiscuz.</p>
<p>There is a hook to change the name of this tab:</p>
<blockquote>
<p>add_filter( 'woocommerce_product_tabs', 'rename_reviews_tab' );<br /><br />function rename_reviews_tab( $tabs ) {<br />global $product;<br />$tabs = 'Customer Reviews (' . $product-&gt;get_review_count() . ') ';<br />return $tabs;<br />}</p>
</blockquote>
<p>This snippets works as normal, but not when your plugin is activated.</p>
4966
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>yoannc</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25856</guid>
                    </item>
				                    <item>
                        <title>RE: Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25851</link>
                        <pubDate>Mon, 16 Nov 2020 12:46:33 +0000</pubDate>
                        <description><![CDATA[@yoannc,
Could you please leave some example URL? Also please leave a screenshot of how it looks before the WooDiscuz plugin installed.]]></description>
                        <content:encoded><![CDATA[<p><span>@yoannc,</span></p>
<p>Could you please leave some example URL? Also please leave a screenshot of how it looks before the WooDiscuz plugin installed. </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25851</guid>
                    </item>
				                    <item>
                        <title>Comments Count</title>
                        <link>https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25844</link>
                        <pubDate>Mon, 16 Nov 2020 11:55:56 +0000</pubDate>
                        <description><![CDATA[Hi there,
By default, there is a space between the title and the number of comments in the tab label. Since the installation of the WooDiscuz plugin, this space has been deleted, both in th...]]></description>
                        <content:encoded><![CDATA[<p>Hi there,</p>
<p>By default, there is a space between the title and the number of comments in the tab label. Since the installation of the WooDiscuz plugin, this space has been deleted, both in the "Reviews" tab and in the "Discussions" tab. How to restore it?</p>
<p>Thank you</p>
4965
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/woodiscuz-woocommerce-comments/">WooDiscuz - WooCommerce Comments</category>                        <dc:creator>yoannc</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/woodiscuz-woocommerce-comments/comments-count/#post-25844</guid>
                    </item>
							        </channel>
        </rss>
		