Skip to content
Snippets Groups Projects

Edit product short description on the fly - Dropshipping WooCommerce

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Krzysztof Dyszczyk
    Edit product short description on the fly - Dropshipping WooCommerce.php 355 B
    add_filter( 'wpdesk_dropshipping_mapper_short_description', 'short_description_filter' );
    
    function short_description_filter( $short_description) {
    	$description = str_replace(array('{', '}'), '', $short_description);
    	return strip_tags(trim($short_description), '<p><a><ul><ol><li><b><i><table><th><tr><td><strong><div><span><h1><h2><h3><h4><h5><h6>');
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment