Remove links from the product description in WooCommerce

Remove links from the product description in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function remove_links_from_product_descriptions ( $content ) {
    if ( is_product() ) {
        $content = preg_replace('#<a.*?>(.*?)</a>#i', '\1', $content);
        return $content;
    }
    return $content;
}
add_filter( 'the_content', 'remove_links_from_product_descriptions');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.