Viewing 3 replies - 1 through 3 (of 3 total)
  • Mirko P.

    (@rainfallnixfig)

    Hi @frank009,

    In order to remove the product long description metabox you can use the following snippet, as seen here:

    function remove_pages_editor(){
      remove_post_type_support( 'product', 'editor' );
    }   
    add_action( 'init', 'remove_pages_editor' );

    Add the code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin.

    I hope this helps!

    Thread Starter Frank009

    (@frank009)

    Excellent Mirko.
    It works well. The long description box has disappeared.
    Thank you!

    Mirko P.

    (@rainfallnixfig)

    Awesome! Glad I could help you with this.

    Open a new topic anytime if you have any further questions.

    Cheers.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Delete long description in “Add product”’ is closed to new replies.