Hello
After install plugin categories are not hide. I tried to reinstall the plugin but it didn’t help. I use Divi Eleganthemes. My site is under construction mode. I can show for a request. Please just a send me a message.
Thank for any tips:)
]]>Hi there,
I create some categories to group products internally.
I add gg- in those category names.
Can you plugin work with this kind of keyword instead of whole category name?
Hi Team,
Thank you for the amazing plugin. We are having some issue with Analytic-Products reporting tab. Screen crashed and stay blanked when I installed this plugin. Please help.
Thank you
]]>I have tried to hide “lavprisafdelingen” on this page, but it’s not working.
Using the newest woocommerce, and “pro x” theme
You have new version 1.1.2. and when updating WordPress sees this as version 1.1.1. and will continually say that an update is available. You need to update the version in the coding to version 1.1.2. as well because it is currently showing as 1.1.1. even though it is version 1.1.2.
]]>Hello,
Turning on debug logs, I found that there was a problem with https://plugins.trac.www.ads-software.com/browser/hide-categories-on-shop-page/trunk/wc-hide-categories-on-shop-page.php#L147.
As a matter of fact, $terms
can contain a mix of WP_Term objects and numerci term_ids… So when it’s a numeric ID, it doesn’t have a ‘slug’ sub-object, so $term->slug
is null
.
So I had to change:
foreach ( $terms as $key => $term ) {
if ( ! in_array( $term->slug, $data ) ) {
$new_terms[] = $term;
}
}
into:
foreach ( $terms as $key => $term ) {
// Use get_term to get a WP_Term object from wether WP_Term object or term_id
$termobj = get_term($term);
if ( ! in_array( $termobj->slug, $data ) ) {
$new_terms[] = $term;
}
}
Maybe you’ll be interested to include that in your next version.
Hope it helps.
And thank you for your usefull plugin!
]]>Hello. We have an identical problem to the one outlined here: https://www.ads-software.com/support/topic/conflict-with-wp-all-import-pro-automatic-imports/
I have now disabled your plugin until a fix is provided.
Can you please help? Thank-you.
Good morning, I am looking for a plugin that can exclude a product group from the home page. Now I found this one (Hide Categories On Shop Page) but unfortunately it doesn’t work with my Vogue theme. Does anyone have a solution for this? Thanks in advance!
]]>This plugin is prefect work on the 1st page or first load, in ajax pagination, but when go to 2nd page, or from page 2 to return to page 1 is not work.
Does anyone have a solution for me?
]]>Is the plugin tested with version 5.5.1?
I like to hide the “adult” category but it is still there when i configure it.
Does anyone have a solution for me?
]]>Hi, is there any possibility to hide categories on Shop Page but show them on Product Page? Thank you.
]]>Hi,
I saw in your screenshot has 190 sales order, is that real?
]]>Is it possible for you to add a checkbox in the WP dashboard category list to indicate which categories to display and which not?
I would be willing to donate if this feature were added. I find the process somewhat convoluted now.
I’m using WordPress 5.4.2 and WooCommerce 4.3.0 with the Storefront theme, and the plugin does not seem to do anything. I know it’s not tested with this version of WP, but just wondering if it should work anyway. My Shop page is the landing page at the link I’m providing and you can see the product categories right there below the large photo, even though I have used the plugin to hide all of them.
]]>Hi – I’m using version 1.1.0 which appears to work properly. It hides specific categories by slug and all seems well. However, I noticed that when I have debugging on in wordpress and go to a product page, I get an error:
Notice: Trying to get property ‘slug’ of non-object in /home/mysite/public_html/wp-content/plugins/hide-categories-on-shop-page/wc-hide-categories-on-shop-page.php on line 147
I only get this error on a product page – not category/subcategory pages.
Disabling debug mode hides the error, but I was hoping to resolve this. Any input would be appreciated. Thank you!
]]>Hello everyone,
To answer a few things, yes this does work with current version of WP, and no it is not multi-site compatible.. yet.
The new version I am working on will be compatible with wp multisite and have a few extra settings in it to make things easier for the user.
Thanks to everyone who uses this simple but very useful plugin.
Eric
]]>Hello i have read the another ticket but it did’t work.
I need hide my food catogory from shop page, his slug is Food you can see here
https://monosnap.com/file/fkC3buw7OL3KP1r7qwnSFv99pZGZlm
so how to hide from shop page ?
i have write this classes, gun-packages, milo, book-events, food
but did’t work
I have installed it and it is not working for me. I do not see any options to hide categories on the products or categories pages in the WordPress dashboard.
]]>Hello
it does not work on multiste, please check the screenshot:https://prntscr.com/m97upy
Thanks
]]>Hi there,
Thanks for your plugin, it should really be part of the Woocommerce core. I installed and can’t figure out why it’s not working on the public site (categories are still there and I emptied all the cache) while it’s working when I’m on the Appearance > Customize section where the categories are indeed hidden.
Would you be able to understand why that is?
Thanks,
]]>Hello and thank you for your plugin. I successfully hid categories so I could display better-looking category images with buttons, but products then appeared on my store home page, and they weren’t there before. Do you know how to remove products from the store home page? My customization settings are for categories only to appear on the store home page.
Thank you so much!
]]>I was hoping to use this as a way of filtering products for another plugin. I’m in a multisite environment and it appears that your plugin doesn’t work in multisite – it alerts me in woocommerce > settings > products that an install of WooCommerce is needed to run the plugin.
]]>I am following your installation guide and have a custom shop end point. however i cant find the wc-hide-categories.php file to update as per your guide.
]]>for example, my catagory is “smart phone”, and the link is “smart-phone”
i wanna hide it from whole site, then what should I put into the text area?
i tried both “smart phone” and “smart-phone”, seems none of them working.