The same problem in cookie box: can’t add translation:
– Bar: Explanation, Bar: More Information Text, Bar: Accept Button Text, Modal: Title, Modal: Explanation;
– and for consents Title and Description.
Thread Starter
WEBEST
(@webest)
Hi @nidwija,
thank you for your answer.
We’ve found a solution for errors mentioned by http://jigsaw.w3.org/css-validator/
In /wp-content/themes/accelerate/inc/functions.php in 815th line
there is
.woocommerce ul.products li.product .price .amount,.entry-summary .price .amount,.woocommerce .woocommerce-message::before{color: ‘ . $primary_color . ‘;},.woocommerce .woocommerce-message { border-top-color: ‘ . $primary_color . ‘;}’;
and fixed version:
.woocommerce ul.products li.product .price .amount,.entry-summary .price .amount,.woocommerce .woocommerce-message:before{color: ‘ . $primary_color . ‘;}.woocommerce .woocommerce-message { border-top-color: ‘ . $primary_color . ‘;}’;
Hope you can take it in next update:)