Dennis Ploetner
Forum Replies Created
-
Forum: Reviews
In reply to: [Multisite Language Switcher] Not Working in ver 4.8.2Interesting … why is that?
Forum: Plugins
In reply to: [Multisite Language Switcher] this plugin not working with Version 4.8.2Please, describe in detail (screenshots are also welcome) what you made and what you expected.
Forum: Plugins
In reply to: [Multisite Language Switcher] Automatic Post Match by TitleInteresting feature … I will see what I can do here. What about a feature request at Github. I planned some session during the weekend. π
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.