Dennis Ploetner
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Language Switcher] Importing Post ContentSeems something where @lucatume can help. He will work soon on it.
I will check this in the next days… Thanks for pointing it out.
I believe that’s the only option here because these Userinfos are shared. There is no content per site…
I have to move this over to Github issues and try to reproduce it. In case you want to give me a hand: https://github.com/lloc/Multisite-Language-Switcher/issues
Forum: Plugins
In reply to: [Multisite Language Switcher] Filter-Hook RequestInteresting! Do you mind to make a pull-request at https://github.com/lloc/Multisite-Language-Switcher/?
Forum: Plugins
In reply to: [MslsMenu] Doesn’t work with newspaper themeI need more context. Would you share your settings, please?
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom linkMmm … that’s a bit out of the scope of this plugin. There is a hook where you could add custom code for creating the necessary output but you would have to write it on your own.
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom linkBut it is in the same multisite though?
Forum: Plugins
In reply to: [Multisite Language Switcher] Add MSLS Menu to OceanWP HeaderI’m not sure because I don’t know that theme good enough. You could use the widget if there is any area right from the menu where you could place it.
Forum: Plugins
In reply to: [Multisite Language Switcher] Add MSLS Menu to OceanWP HeaderSorry, I did indeed oversee that you already use MslsMenu. You’ll find a before_element and after_element in the plugin’s configuration in the part especially for MslsMenu. For my website: https://lloc.de/ I use similar settings to the screenshot here: https://ps.w.org/mslsmenu/assets/screenshot-3.png (using an additional CSS-class
<li class="menu-item">
).I hope this was more helpful,
DennisForum: Plugins
In reply to: [Multisite Language Switcher] Where is the Admin Language?This option was removed in Version 1.2
https://github.com/lloc/Multisite-Language-Switcher/blob/master/Changelog.md#12-2018-02-01
because you can set the user language in your profile.
Forum: Plugins
In reply to: [Multisite Language Switcher] Add MSLS Menu to OceanWP HeaderAny chance that MslsMenu could be helpful here?
You probably get the error “function is already defined” or similar. Try this here (it gets in one function):
function my_msls_options_get_permalink( $url, $language ) { if ( 'es_ES' == $language ) { return str_replace( '/shop/', '/tienda/', $url ); } elseif ( 'en_US' == $language ) { return str_replace( '/tienda/', '/shop/', $url ); } return $url; } add_filter( 'msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2 );
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisite brutalement déconnecté sur erreur PHPYes, version 2.3 should work in your case: https://github.com/lloc/Multisite-Language-Switcher/releases/tag/v2.3.0
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisite brutalement déconnecté sur erreur PHPI don’t speak french but I would suggest updating PHP to version 7 or higher at least.