Hello,
I use the DC Upsells product to display the products linked to a product sheet. however, I would like the default title not to be displayed (at the top of the upsell section). How to remove the title.
Hello @jptrotier,
Thanks for writing in! The DC Upsells dynamic element only displays what is needed to be displayed by WooCommerce. If you need to change the title, perhaps these articles can help you:
- https://themeskills.com/how-to-change-the-you-may-also-like-woocommerce-up-sells-text/
- https://rudrastyh.com/woocommerce/up-sells-cross-sells-related-products-text.html
Be advised that custom coding is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.
Best Regards.
thanks. Haved found a solution.
In the function.php of the child theme. Add this:
add_filter(
'woocommerce_product_upsells_products_heading'
,
'bbloomer_translate_may_also_like'
);
function
bbloomer_translate_may_also_like() {
return
'Customers also purchased...'
;
}
Work great
Hey @jptrotier,
We’re glad that you’re able to find a solution to your issue! If you have any other concerns or clarifications regarding our theme features, feel free to open up a new thread.
Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.