Dennis Ploetner
Forum Replies Created
-
I will check this during the weekend. Would you please open also an issue at Github?
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type + Dynamic slug = 404These fields are meant for this kind of problem. Do the values differ when you switch between the languages in the dashboard?
Forum: Plugins
In reply to: [Multisite Language Switcher] this plugin not working with Version 4.8.2I use this version too and there is no problem. Please, give me some information!
Forum: Plugins
In reply to: [Multisite Language Switcher] Automatic Post Match by TitleI think that would be possible to create a small script that takes the ID of every post by title and switches between the sites. MSLS stores an array for every post in a site with languages as keys and IDs as value.
Forum: Plugins
In reply to: [Multisite Language Switcher] Woocommerce supportThanks for the input! It is very helpful. I think the will be very soon a solution.
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisites not being detectedWould it be ok for you if I set this topic resolved and if I make it also sticky?
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisites not being detectedSorry, it seems I could create kind of a list with first questions to ask 😉
Do you use any plugin filter (like ‘msls_blog_collection_construct’)?
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisites not being detectedDo these sites have different languages?
Forum: Plugins
In reply to: [Multisite Language Switcher] Multisites not being detectedAlso in this case, please, check the “reference user” first. Is the user that is set in site C set in A and B too?
Forum: Plugins
In reply to: [Multisite Language Switcher] Can’t change language in settings – generalDid you deactivate also the Multisite Language Switcher to exclude this plugin too?
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type + Dynamic slug = 404You have probably to create a filter function that can handle this situation. Something like this:
/** * @param string $postlink * @param string $language * @return string */ function my_msls_options_get_permalink( $url, $language ) { if ( 'fr_FR' == $language ) { $url = str_replace( '/car/', '/voiture/', $url ); } return $url; } add_filter( 'msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2 );Forum: Plugins
In reply to: [Multisite Language Switcher] Woocommerce supportI remember that there was a request for that some time ago. I will look into this in the next days. Hopefully, I will find a quick but final solution for this.
Forum: Plugins
In reply to: [Multisite Language Switcher] Can’t change language in settings – generalYes, I’m sorry but give it a shot since you already tried it with the Multisite Language Switcher.
Forum: Plugins
In reply to: [Multisite Language Switcher] Can’t change language in settings – generalIt seems it that WPLANG is commented. So there is no problem … do you have other plugins installed that could cause the problem?
Forum: Plugins
In reply to: [Multisite Language Switcher] dual language swithchYes, the transition to a multisite might be a little bit tricky if you don’t know exactly what you have to do. Just a multisite (without any further plugin) would give you all you need to separate the Dansk and the English contents. The switcher ties than your installs (and the contents if you wish) together.