Strip links from product descriptions
-
I am creating a multivendor marketplace based on woocommerce and dokan. I want to prohibit sellers from adding links in long and short product descriptions.
Is this solution suitable for my problem?//Disallow Vendors from adding links to their websites or URLs in the Product Description if( !is_admin() ) // not admin side add_filter( 'the_content', 'filter_the_content_in_the_main_loop' ); function filter_the_content_in_the_main_loop( $content ) { if ( ! is_product() ) { $content = preg_replace(array('"<a>"', '"</a>"'), array(","), $content); } return $content; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Strip links from product descriptions’ is closed to new replies.