Side Cart Text
The side cart where it says Shipping: Free!
The text is located in this file: /functions/theme-woocommerce.php
Line 708
$total = __( 'Free!', 'woocommerce' );
We want to change the Free! text to be something else, is there a way to add some sort of filter to our bethem-child/functions.php file?
Comments
Hello,
Unfortunately, I do not handle files customization, and I am not able to help you.
I can only recommend checking the link about setting and managing the child theme.
https://support.muffingroup.com/documentation/installation-updates/#child-theme
Thanks
Hi, we have tried duplicating the file to /betheme-child/functions/theme-woocommerce.php
but as soon as you update the betheme core theme it breaks the store, this is why we want a solution fix. Why do they hardcode text in core files and not a language file where we can change text if needed?
Anyways for now we have just hidden the Shipping text on side cart using CSS, if anyone else has similar problems.
/* Side cart - hide shipping row */
.mfn-cart-holder .mfn-ch-footer .mfn-ch-footer-totals .mfn-chft-row.mfn-chft-row-shipping {
display: none !important;
}
We are currently working on shop texts to translate/change through Betheme -> Theme options -> Translate.
I will pass the information to the dev team that this text can be translateable to.
Thanks