Goran
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Crash site when submitting settingsJFYI, it’s all good as long as I don’t activate ASE for the network.
Best regards,
GoranForum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Crash site when submitting settingsI’ve used ASE on several multisite and everything was fine until ver 7.0.
Since most of my sites are multisite, this is a deal breaker for me. Any chance to support multisite installations?
I’m not an expert and have no clue what happened.Best regards.
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Crash site when submitting settingsIt’s even worse after the update to 7.0.2. Now it crashes after installing. Note that I’m using multisite (only the main site for now).
EDIT: after several deleting and installations it is working for now.
Best regards
Goran- This reply was modified 5 months, 3 weeks ago by Goran.
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Crash site when submitting settingsThanks for the prompt answer.
Best regards.
Forum: Plugins
In reply to: [Multisite Language Switcher] Not working with wordpress category pagesI’ve had the same problem. This PHP snippet resolved it for me. Change language data for your case.
/** * @param string $postlink * @param string $language * @return string */ function my_msls_options_get_permalink( $url, $language ) { if ( 'sr_RS' == $language ) { $url = str_replace( '/product/', '/proizvod/', $url ); $url = str_replace( '/products/', '/proizvodi/', $url ); } if ( 'en_US' == $language ) { $url = str_replace( '/proizvod/', '/product/', $url ); $url = str_replace( '/proizvodi/', '/products/', $url ); } return $url; } add_filter( 'msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2 );
Hope it helps.
Best regards,
Goran- This reply was modified 7 months ago by Goran.
Forum: Plugins
In reply to: [Multisite Language Switcher] Connect large amount of translated pagesEasiest would be that it automatically detects a post with the same slug for example.
That would be great! Hope to have it some day. ??
Best regards.Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageJFYI this code has done the job:
UPDATE table1 SET field1 = REPLACE(field1, ‘code1’, ‘code2’) WHERE field1 LIKE ‘msls_%’;Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageThanks! It helps, but some code hint would help more… ??
Have a nice day.Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageHello, sorry but I can’t change back language. The use case is as follows: client have 4 sites in 4 countries with almost the same content. So, I’ve cloned the main site, and then change the main language to the new one (English is the second language). Hope this makes sense.
Forum: Plugins
In reply to: [Multisite Language Switcher] How to change current languageHello Dennis,
Happy New Year. Thanks for your time. I’ve changed language at WordPress> Settings > General > Language. After that, all links between posts are gone. To establish links again I have to open every post and click on “Update”. Any chance to speed up the process a bit? Thanks.Forum: Plugins
In reply to: [Multisite Language Switcher] Import translations with WP All ImportI’m not an expert, but would like to know is it possible to export products from the language1 end than import them to language2 with translated data and make links automatically (if that makes sense)?
Forum: Plugins
In reply to: [Multisite Language Switcher] Product attribute translationIssue posted on GitHub. Have a nice day.
Forum: Plugins
In reply to: [Multisite Language Switcher] Product attribute translationProduct categories work just fine for me (for now) ?? For product attributes the is no language switcher.
Forum: Plugins
In reply to: [MslsMenu] Styling in Elementor ProDennis thanks for answering. Nth-child didn’t do the job. Somehow “a” tag style always persists. Don it with a combo of li class and some code snippet for that class. Something like:
.my-menu a {
color: white;
}
Sorry for taking your time.
Best regards,
GoranForum: Plugins
In reply to: [WP Post Popup] Want to use Elementor Single Post Template for Modal content@iqbalmauludy, have the same problem. Would be much appreciated if you can find your solution. Thanks.