Dennis Ploetner
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Language Switcher] css class of widget output wrong?Yes, you are right… I will correct it asap.
Forum: Plugins
In reply to: [Multisite Language Switcher] After last updateThanks for the message I will check this right away and let you know very soon.
- This reply was modified 7 years, 6 months ago by Dennis Ploetner.
Yes, that was a bigger one and hopefully, there will be no show-breaker anymore.
MslsSelect should not be a problem. I send some fixes online. Please check it!
Ok, I will check this but I need more information. Do you use an add-on or customized code in your functions.php?
Forum: Plugins
In reply to: [Multisite Language Switcher] Replacement for msls_head() in version 2.0You can still use these Classes with their namespaces …
$options = lloc\Msls\MslsOptions::instance(); \\ the options instance $options = lloc\Msls\MslsOptions::create(); \\ the options factory $collection = lloc\Msls\MslsBlogCollection::instance(); \\ the blog collection instance- This reply was modified 7 years, 6 months ago by Dennis Ploetner.
Forum: Plugins
In reply to: [Multisite Language Switcher] Replacement for msls_head() in version 2.0OK, I’m working on it. In the meanwhile … please check if your theme calls
wp_head();in header.php.Forum: Plugins
In reply to: [Multisite Language Switcher] Replacement for msls_head() in version 2.0msls_head()was a filter function for the WordPress hookwp_head. I guess functions like that are not to use directly. I will check this anyway!Forum: Plugins
In reply to: [Multisite Language Switcher] WP 5+ / Gutenberg Support CompatibilityMultisite Language Switcher 2.0 is online 😉
Forum: Plugins
In reply to: [Multisite Language Switcher] Can i use subfolders ?Yes, this would also work with the subfolder configuration in a multisite.
I’m not sure regarding the value for SEO. Personally, I use domains… read on here: https://searchengineland.com/the-ultimate-guide-to-multilingual-and-multiregional-seo-157838
I’m sure that it could be easy as backup the site, configure the site for subdirectories and check if you linked your contents with the complete URL.
Maybe there are links from other sites to your site’s content?
Yes, I inserted this filter in the version on GitHub that I wanted to deploy this weekend -> https://github.com/lloc/Multisite-Language-Switcher
Forum: Plugins
In reply to: [Multisite Language Switcher] Problem with unsecure contentYes, I suppose it is. Do you need some WordPress expert near your location?
Maybe I know somebody… would you like to be contacted by another theme developer?
Forum: Plugins
In reply to: [Multisite Language Switcher] Problem with unsecure contentI had a look at your site and it seems that the switcher links your pages with https … so it seems no problem. Do you have any images in your content that you linked with http maybe?
I looked the code a bit and tried to remember why this is working like that.
I remember that there was somebody complaining in the past that there was that strange behaviour in case you activate the options as you did and there was no output at all. I added now a filter to set that message.
So you can do something like this in the next version:
add_filter( 'msls_widget_alternative_content', function( $str ) { return ''; } );Forum: Plugins
In reply to: [Multisite Language Switcher] Settings only for Network AdminsThe filter is in the version on Github…
Regarding the “msls_admin_validate”-filter: That was for the old language setting in the wp-admin. I removed that in the last version.