Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tomasjenikovsky

    (@tomasjenikovsky)

    In meantime I discovered the excerpt formatting disappeared after update WP to 6.3 and it’s a known issue. Fortunately there exists workaround what brings the formatting back.

    It’s just needed to create this php snippet:

    function filter_post_excerpt_attrs( $metadata ) {
        if ( 'core/post-excerpt' === $metadata['name'] ) {
            $metadata["attributes"]["excerptLength"] = false;
        }
    
        return $metadata;
    };
    
    add_filter( 'block_type_metadata', 'filter_post_excerpt_attrs', 10 );

    After that my bullet prints in the product short-descriptions showed up again.

    Hi @tomasjenikovsky ,

    I’m glad to hear that you managed to find a temporary workaround for this.

    Since this is a reported issue, I’d suggest subscribing to the GitHub thread to stay looped in on updates as they happen.

    On the other hand, since this has been resolved, feel free to create a new topic?if you need any further help.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bullet points missing in porduct short description (Woocommerce)’ is closed to new replies.