dornaweb / product-specifications

Woocommerce product specification table plugin
https://wordpress.org/plugins/product-specifications/
GNU General Public License v2.0
20 stars 6 forks source link

How to remove the specification group name from the tabs #1

Closed toqitahamid closed 6 years ago

toqitahamid commented 6 years ago

How can I remove the group name from the product specification tabs?

screenshot-2018-1-4 anker powerline lightning cable 1 8m 6ft penguin com bd

screenshot-2018-1-4 attribute groups penguin com bd wordpress

amiut commented 6 years ago

As for now you can hide it with CSS :

.dwspecs-product-table-group .group-title{
  display: none;
}

To make sure that you don't hide group names that are needed i suggest to remove only the first group name, because as i can guess you wan't a single group table:

.dwspecs-product-table-group:first-child .group-title{
  display: none;
}
toqitahamid commented 6 years ago

Thank you so much.

On Jan 16, 2018 11:16 PM, "Amin A. Rezapour" notifications@github.com wrote:

As for now you can hide it with CSS : .dwspecs-product-table-group .group-title{ display: none; }

To make sure that you don't hide group names that are needed i suggest to remove only the first group name, because as i can guess you wan't a single group table: .dwspecs-product-table-group:first-child .group-title{ display: none; }

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/dornaweb/product-specifications/issues/1#issuecomment-358035267, or mute the thread https://github.com/notifications/unsubscribe-auth/ACBEoqN-bmuR5VaZkho0sh9Of7MvbNMIks5tLNl0gaJpZM4RSWtL .