Hi,
you can simply do this using CSS, no function required.
Add this at the bottom of your theme’s style.css.
.dokan-new-product-area .dokan-form-container .product-edit-container #post-excerpt,
.product-edit-container .dokan-product-edit-form .dokan-product-short-description
{
display:none;
}
Thanks
Hi @rafsuntaskin,
How we hide the downloadable and virtual option from Product Edit page?
-
This reply was modified 9 years ago by
aqeeliqbal.
Plugin Author
weDevs
(@wedevs)
Hello aqeeliqbal,
You can hide those checkboxes through CSS
.dokan-form-group.dokan-product-type-container.show_if_simple {
display: none !important;
}
Also, you can override the new-product-single.php file via your child theme to modify the product edit page π
@aqeeliqbal
You are welcome π