- 🇱🇧Lebanon vitch
Hello,
I have recently encountered this issue and had to come up with a quick workaround:
inspect the page and add the following css:td.tabledrag-hide { display: block !important; }
Create a language hierarchy like this:
A
- B
- C
- - D
Then show row weights, you'll see that A, B and D are all -10 and C is -9, so D will show before C and the order of the A, B and D is not clearly defined.
That affects the language switcher and possibly other places.
Not sure. Maybe the JS could be altered to have a weight order that just goes from A to D as -10, -9, -8, -7. Then other things might just work. That's how we manually did it in our case.
Active
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Hello,
I have recently encountered this issue and had to come up with a quick workaround:
inspect the page and add the following css:
td.tabledrag-hide {
display: block !important;
}