Hi,
first of all, thank you very much for this simple guide. I was able to setup widgets translation without buying the pro version that is too expensive for my hobby website (I hate subscription model).
Your guide is for two languages, but I managed to get it works for three. So my questions are:
In theory something like the following, should works too, but it does not. What is the best way to have multiple languages?
Thank you
first of all, thank you very much for this simple guide. I was able to setup widgets translation without buying the pro version that is too expensive for my hobby website (I hate subscription model).
Your guide is for two languages, but I managed to get it works for three. So my questions are:
- I modified the CSS file by adding this and it works:
CSS:
body.en .widget-es {
display: none;
}
body.en .widget-fr {
display: none;
}
CSS:
body.en .widget-es, .widget-fr {
display: none;
}
- In the widget I have one heading (h2 or h3) followed by an element (gallery, picture, table). However, the vertical alignment of the heading is the same for the second and third languages (es and fr) while it is different for the first one (en). Do you know why?
Thank you