Hi Hussein,
Thanks for getting in touch with us.
You can remove the description tab by overriding the “archive_vendor_info.php” template file via dc-woocommerce-multi-vendor/templates/archive_vendor_info.php. You may get further instruction inside the templat file.
Alternatively, you may use some custom CSS to hide those tabs.
Let us know if you have any further query.
Can you give me the instructions to do it with custom CSS, because I tried and it removes the whole description. I just want to remove the frame and the word “Description”.
@ezzo490 Kindly just remove the label, use this CSS in your active theme’s style.css:
.description_data td:first-child {
display: none;
}
Thank you @dualcube, it worked 🙂
Do you know how I can remove the frame/border around the description?
In order to remove the border use this following css
.description_data table td {
border: 1px solid #cccccc08;}
Thank you @dualcube, it worked 🙂