Dennis Ploetner
Forum Replies Created
-
Hey, I just checked them on your site and on my test-sites (they seem fine on my sites). Just to exclude that; could you go to the permalinks section of every site. You don’t need to do nothing, I would just like to have those permalinks refreshed.
Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageI see. I believe there is a way to automate this but it needs a bit extra work (custom code).
The options are saved separately in every blog in the *_options-tables. They are synched so they have in your case basically the same values. You can find some options in the database that start with
msls_*. The stored value is an array that contains a structure like (just an example):a:2:{s:5:"de_DE";i:42;s:5:"en_GB";i:42;}which stands for (language code => post ID):
[ 'de_DE' => 42, 'en_GB' => 42 ]It should be possible to select all values, loop over them and add the missing languages with the same values (since you cloned the content).
Hope this helps.
Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageHello, you get probably the links back when you switch back to the language that you had set before. Do you confirm?
I don’t understand though why you would change the language. What is the use case here?
You can probably change the saved options. Is that something you would like to archive?
Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageHello, can you elaborate on what you are trying to archive? Where do you change the language?
Forum: Plugins
In reply to: [Multisite Language Switcher] Wrong links for Archive pages and Custom SlugsI will double-check it here and come back to you.
Forum: Plugins
In reply to: [Multisite Language Switcher] Wrong links for Archive pages and Custom SlugsWhat do you see in the settings of the plugin under “Rewrite Seetings”?
Forum: Plugins
In reply to: [Multisite Language Switcher] Wrong links for Archive pages and Custom SlugsSure, the second example (autor to author) seems right to me, since this is a slug that is clearly translated. The first and the third example seem not properly localized custom slugs. How did you create them? Did you refresh/flush the permalinks (by just visiting the Permalinks section in the settings)?
Hey all, yes this is additional functionality that is currently without much testing. I will have a look into it.
- This reply was modified 3 years, 7 months ago by Dennis Ploetner.
Forum: Plugins
In reply to: [Multisite Language Switcher] Serves images with low resolutionYou can probably check the link that the plugin builds (using your configuration) and adjust accordingly.
Forum: Plugins
In reply to: [Multisite Language Switcher] Serves images with low resolutionHey,
the plugin uses flags from here: http://famfamfam.com/lab/icons/flags/
You can define your own set if you have better flags. Read one here: https://msls.co/user-docs/plugin-configuration.html#advanced-settings
Forum: Plugins
In reply to: [Multisite Language Switcher] Spanish translation does not work properlyNo need for an excuse. English isn’t my mother tongue too.
Forum: Plugins
In reply to: [Multisite Language Switcher] Spanish translation does not work properlyInteresting issue! I had no idea and will sureleìy have a look into it.
I believe the translation could also be updated here so that I could get rid of the language files that I deliver with the plugin:
https://translate.ww.wp.xz.cn/projects/wp-plugins/multisite-language-switcher/
Thanks for pointing this out.
Forum: Plugins
In reply to: [MslsSelect] MslsSelect not working as expectedSure, my email address is [email protected].
Forum: Plugins
In reply to: [MslsSelect] MslsSelect not working as expectedCan you refer me to a website where I could see the problem?
Forum: Plugins
In reply to: [MslsMenu] Adjust color of Description linkAn ‘a’ tag could use a class or id of a parent. You could refer to them as
li.foo a(where foo would be your class). Please. try this before.- This reply was modified 3 years, 7 months ago by Dennis Ploetner.