Title: Goran's Replies | WordPress.org

---

# Goran

  [  ](https://wordpress.org/support/users/goran63/)

 *   [Profile](https://wordpress.org/support/users/goran63/)
 *   [Topics Started](https://wordpress.org/support/users/goran63/topics/)
 *   [Replies Created](https://wordpress.org/support/users/goran63/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/goran63/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/goran63/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/goran63/engagements/)
 *   [Favorites](https://wordpress.org/support/users/goran63/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/goran63/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/goran63/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEOPress - AI SEO Plugin & On-site SEO] Number of characters in dynamic data](https://wordpress.org/support/topic/number-of-characters-in-dynamic-data/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [10 months, 1 week ago](https://wordpress.org/support/topic/number-of-characters-in-dynamic-data/#post-18623756)
 * Thanks, Benjamin Denis.
 * Best regards,
    Goran
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Link added to post descriptiom](https://wordpress.org/support/topic/link-added-to-post-descriptiom/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [10 months, 2 weeks ago](https://wordpress.org/support/topic/link-added-to-post-descriptiom/#post-18620092)
 * Thanks, Dennis. That was the case. After more than 3 years of using your plugin,
   I should do better.
    Thanks again, and sorry for wasting your time.
 * Best regards,
    Goran
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] SKU in dropdown – again](https://wordpress.org/support/topic/sku-in-dropdown-again/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/sku-in-dropdown-again/#post-18290043)
 * Thanks for your time. When editing product MSLS select field show only product
   name. It would be great if we can se SKU beside produst name.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin and Site Enhancements (ASE)] Crash site when submitting settings](https://wordpress.org/support/topic/crash-site-when-submitting-settings/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/crash-site-when-submitting-settings/#post-17809684)
 * JFYI, it’s all good as long as I don’t activate ASE for the network.
 * Best regards,
    Goran
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin and Site Enhancements (ASE)] Crash site when submitting settings](https://wordpress.org/support/topic/crash-site-when-submitting-settings/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/crash-site-when-submitting-settings/#post-17803572)
 * I’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin and Site Enhancements (ASE)] Crash site when submitting settings](https://wordpress.org/support/topic/crash-site-when-submitting-settings/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/crash-site-when-submitting-settings/#post-17803475)
 * It’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 2 years, 1 month ago by [Goran](https://wordpress.org/support/users/goran63/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin and Site Enhancements (ASE)] Crash site when submitting settings](https://wordpress.org/support/topic/crash-site-when-submitting-settings/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/crash-site-when-submitting-settings/#post-17791742)
 * Thanks for the prompt answer.
 * Best regards.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Not working with wordpress category pages](https://wordpress.org/support/topic/not-working-with-wordpress-category-pages/)
 *  [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/not-working-with-wordpress-category-pages/#post-17710038)
 * I’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 2 years, 2 months ago by [Goran](https://wordpress.org/support/users/goran63/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Connect large amount of translated pages](https://wordpress.org/support/topic/connect-large-amount-of-translated-pages/)
 *  [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/connect-large-amount-of-translated-pages/#post-16594442)
 * [@geeko1936](https://wordpress.org/support/users/geeko1936/)
 * > Easiest 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] How to change current language](https://wordpress.org/support/topic/how-to-change-current-language/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-current-language/#post-16350628)
 * JFYI this code has done the job:
   UPDATE table1 SET field1 = REPLACE(field1, ‘
   code1’, ‘code2’) WHERE field1 LIKE ‘msls_%’;
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] How to change current language](https://wordpress.org/support/topic/how-to-change-current-language/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-current-language/#post-16350065)
 * Thanks! It helps, but some code hint would help more… 🙂
   Have a nice day.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] How to change current language](https://wordpress.org/support/topic/how-to-change-current-language/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-current-language/#post-16348883)
 * Hello, 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] How to change current language](https://wordpress.org/support/topic/how-to-change-current-language/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-current-language/#post-16346047)
 * Hello 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Import translations with WP All Import](https://wordpress.org/support/topic/import-translations-with-wp-all-import/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/import-translations-with-wp-all-import/#post-14867006)
 * I’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Product attribute translation](https://wordpress.org/support/topic/product-attribute-translation/)
 *  Thread Starter [Goran](https://wordpress.org/support/users/goran63/)
 * (@goran63)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/product-attribute-translation/#post-14733875)
 * Issue posted on GitHub. Have a nice day.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/goran63/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/goran63/replies/page/2/?output_format=md)