I want to replace a text on my WordPress website enclosed in p tag as follows:
<div class="uael-mc-dropdown_items">
<p class="woocommerce-mini-cart__empty-message">No products in the cart.</p>
</div>
I want to replace the "No products in the cart." text with "No courses in my bag."
Is there any way to do so using js, CSS, or adding some code in my theme functions.php?
3
Answers
you can do this by using js, i added a timeout function that u see the difference, but u just need this one line inside the timeout function
You can use this script tag to override the content of the inner text as you mentioned
You could use
innerText
attributeRefer: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/innerText