Hi @anempadest
Thank you for your suggestion. We have improved the tab adding section in our latest version. Please update the plugin.
Nothing changed. The name of the Tab is in the beginning of the text.
Apologies for any inconvenience caused. Could you kindly provide further clarification regarding the issue by sharing a screenshot?
Please use the code snippet provided below to hide the tab heading. You can add this code snippet to the functions.php
file of your active child theme (if it exists) or use any of the code snippets plugins available.
add_action('wp_footer', 'wb_cptb_hide_tab_header');
function wb_cptb_hide_tab_header()
{
if(function_exists('is_product') && is_product())
{
?>
<style type="text/css">
.wb_cptb_title{ display:none; }
</style>
<?php
}
}
Please remove the header in future revisions of your plugin.
Sure, we will consider your request in our future releases.