Answer the question
In order to leave comments, you need to log in
How can I make the favicon show the number of items in the cart?
Maybe there are some articles or lessons on how to do this based on woocmmerce, I know that there is a paid plugin for such a task, but the Jewish part of my body does not want to pay 10 dollars for it)
Answer the question
In order to leave comments, you need to log in
Make an icon
Make an icon 1
....
Make an icon 9
Make an icon a lot
Take this plugin as a basis and rewrite it for your basket
https://wordpress.org/plugins/wp-favicon-remover/
Or dynamically
(function() {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'http://www.stackoverflow.com/favicon.ico';
document.getElementsByTagName('head')[0].appendChild(link);
})();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question