I'm using Toolset to add information in tabs in Woocommerce. You have given me some CSS code to hide a lot of junk code, but I can't get rid of the last line "toolsetCommonEs.styleToHead()".
I've inactivated all plugins and used a standard theme, it didn't help. I tried the "suppress filter true" idea from another support thread, but it didn't solve it.
The problem is on all products in the second tab.
Grateful for any help,
Stina
Hi Stina,
I recall suggesting the custom CSS code in the last ticket and I'll be happy to take a look at this again.
Can you please share temporary admin login details, along with the link to an example product page, where this line can be seen?
Note: Your next reply will be private and making a complete backup copy is recommended before sharing the access details.
regards,
Waqar
Hi, I'm waiting for another support team. Right now, the tabs with the problem are not visible. I'll get back to you as soon as that problem is solved. Thank you for your patience.
Sure please take your time and I'll wait to hear back from you.
Hi again, Now the other problem is solved and time to solve this one 🙂
So, if you look at any book on the site, you'll see four tabs, the second one starts with "toolsetCommonEs.styleToHead()". It's always the second one that has the code, even if I shift the places of the second and the third tabs.
I've added the CSS:
.get_custom_product_tab_data .tces-js-style-encoded {
display: none ;
}
This takes away most of it, but not this last part because it's not inside a container I can reach with CSS.
For example:
hidden link
Please tell me if you need any logins.
Thank you!
Stina
For removing stray text/string like this, you can include some custom script in the content template.
For example:
jQuery(document).ready(function( $ ) {
$(".get_custom_product_tab_data").each(function() {
$(this).html($(this).html().replace('toolsetCommonEs.styleToHead()',""));
});
});