Hey all,
I’m helping a friend edit his Shopify page but I can’t seem to find where the “bullet list header” is located. I’d like to rename it just “Info” instead of “Info om Kronhjorten”.
Product page:
https://replantart.dk/collections/verdenskort/products/extra-tape-192-tape-stykker
PageFly is used with this account but I don’t think it’s used on that page.
I’ve checked in Online Store > Themes > Edit default theme content, product page, Theme > Customize, but can’t find any place to edit the header.
Any help would be appreciated.
Moeed
September 26, 2024, 10:12am
2
Hey @Username367468
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
1 Like
Hello @Username367468
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
span#easytabs-slide-label-9697347666245-0:after {
content: "Info";
visibility: visible;
display: block;
float: left;
}
.easytabs-container .easytabs-accordion-item .easytabs-header-text {
visibility: hidden !important;
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
1 Like
Hello @Username367468
Go to online store ---------> themes --------------> actions ------> edit code------->theme.scss.css
at the end of the file and save.
span#easytabs-slide-label-9697347666245-0::after {
content: "Info";
visibility: visible;
float: left;
}
span#easytabs-slide-label-9697347666245-0 {
visibility: hidden;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
1 Like