Edit product short description on the fly - Dropshipping WooCommerce
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>');
}
Please register or sign in to comment