Home Forums WoodMart support forum Some functions of Woodmart are not working.

Some functions of Woodmart are not working.

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #702015

    jw991561
    Participant

    Hello! I’ve discovered a function that isn’t working. When I try to enable “Fullscreen mode” while editing product details, nothing happens. This prevents me from quickly returning to the backend panel to edit other products, significantly impacting my work efficiency.
    I request your assistance in resolving this issue. Additionally, after adding the following code to the functions.php file, some display issues appear on the right side, and the function only works for a few products.

    function activate_gutenberg_for_products( $can_edit, $post_type ) {
    if ( $post_type == ‘product’ ) {
    $can_edit = true;
    }
    return $can_edit;
    }
    add_filter( ‘use_block_editor_for_post_type’, ‘activate_gutenberg_for_products’, 10, 2 );

    Attachments:
    You must be logged in to view attached files.
Viewing 1 post (of 1 total)