• Resolved malbasio

    (@malbasio)


    Hello dear woocommerce experts!

    I inserted a few new products to my catalog. I did this by duplicating old ones and applying appropriate changes. I would like to also change category to some products but for some reason in the product page I don’t see the category selection space in the right column anymore. (I still see it when I manage blog posts).

    I also tried changing category as a bulk action edit. Here I do see the option to change category but I’m only able to add a new category and not remove categories that are set incorrectly.

    Does anybody have any hint on how to solve this issue?

    Thanks in advance!
    Marco

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Shane Eckert

    (@shaneeckert)

    Automattic Happiness Engineer

    Hi Marco,

    Can you make sure that the product categories were not unchecked in the screen options?

    categories
    Link to image: https://cld.wthms.co/sljqYa

    Cheers!

    Thread Starter malbasio

    (@malbasio)

    Hi Shane, thanks for your reply.
    I have such a screen option selection possibility on the all products view. What it does is to toggle whether the table with all the products shows categories. (It was on, I tried toggling it on and off but it has no effect on the page edit settings)

    I don’t have a page called edit product that looks like yours, when I want to update a product or create a new one it looks like the one here. It does not have a screen options selection at the top. If I click the three dots I see an option selection that opens a window but here there is no categories choice (see options pictures 1 and picture 2).

    My woocommerce version is Version 3.4.5, and I have the latest version of wordpress.

    Any other hints?
    Thanks
    Marco

    Thread Starter malbasio

    (@malbasio)

    Hello, can a Woocommerce guru help me find out if I’m doing something wrong here?

    Is it normal for example that I get different looking pages that the one Shane posted?
    (Please see previous posts)

    I appreciate your help. Even just pointing me in the right direction!
    Thanks
    Marco

    jessepearson

    (@jessepearson)

    Automattic Happiness Engineer

    @malbasio It appears the block editor has been turned on for products in your site. WooCommerce disables this by default, so something else must be enabling it. You can use the snippet below and add it to your functions.php file or through a plugin like Code Snippets to turn off the block editor:

    https://gist.github.com/jessepearson/ccfa3c952f83e1699768a2daab95486b

    
    function jp_dectivate_gutenberg_for_products( $can_edit, $post_type ){
    	if( 'product' === $post_type ){
    		$can_edit = '';
    	}
    	
    	return $can_edit;
    }
    add_filter( 'use_block_editor_for_post_type', 'jp_dectivate_gutenberg_for_products', 999, 2 );
    
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I’m not able to edit categories’ is closed to new replies.