Title: notknow's Replies | WordPress.org

---

# notknow

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT-onomies: Using Custom Post Types as Taxonomies] Is CPT-onomies being maintained by anyone now?](https://wordpress.org/support/topic/is-cpt-onomies-being-maintained-by-anyone-now/)
 *  [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/is-cpt-onomies-being-maintained-by-anyone-now/#post-15622817)
 * I’m also be very interested in the topic. We have a site that heavily depends
   on the plugin (it connects custom event post types with cusotm exhibition post
   types and artists in an archive stretching over a period of approx. 15 years 
   with several hundreds of entries).
 * The last post in this support forum is more than 2 months old but no one seem
   to care about it, even if the question is a reasonable one: where to start, what
   to do to maybe get it going again. Doesn’t help wordpress’ reputation either.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Admin bar (toolbar) always links to ‘en’](https://wordpress.org/support/topic/admin-bar-toolbar-always-links-to-en/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years ago](https://wordpress.org/support/topic/admin-bar-toolbar-always-links-to-en/#post-13322795)
 * Yup, here 🙂
 * That second parameter is indeed helpful, thank you.
 * Your question, “Can you exclude this?” is an interesting one, too. This will 
   take a bit, will get back to you.
 * Thanks for your support!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Admin bar (toolbar) always links to ‘en’](https://wordpress.org/support/topic/admin-bar-toolbar-always-links-to-en/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years ago](https://wordpress.org/support/topic/admin-bar-toolbar-always-links-to-en/#post-13312189)
 * Thank you for your reply.
 * Not directly, i suppose, in the way you think of, i have this
 *     ```
       //# translate msls slugs 
   
       function my_msls_options_get_permalink($url) {
   
       	$current_blog_id = get_current_blog_id();
   
       	if ($current_blog_id === 2) {
       		$url = str_replace('/archiv/ausstellung/', '/archive/exhibition/', $url);
       		$url = str_replace('/archiv/veranstaltung/', '/archive/event/', $url);
       	}
   
       	else {
       		$url = str_replace('/archive/exhibition/', '/archiv/ausstellung/', $url);
       		$url = str_replace('/archive/event/', '/archiv/veranstaltung/', $url);
       	}
   
       	return $url;
       }
   
       add_filter('msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2);
       ```
   
 * What else could i look for ??
    -  This reply was modified 6 years ago by [notknow](https://wordpress.org/support/users/notknow/).
    -  This reply was modified 6 years ago by [notknow](https://wordpress.org/support/users/notknow/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap Blocks] Custom row template, again](https://wordpress.org/support/topic/custom-row-template-again/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/custom-row-template-again/#post-13170870)
 * Ah, thank you for your reply.
    So you have some kind of relpacement hierarchy,
   like with templates, *if* a custom file exists you use that one, if not you use
   your shipped version. It’s often exactly these things that deliver some extra
   information that is interesting. Thanks you for answering and thanks por the 
   plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap Blocks] Custom row template, again](https://wordpress.org/support/topic/custom-row-template-again/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/custom-row-template-again/#post-13168823)
 * I deleted the whole folder ‘themename/wp-bootstrap-blocks’.
 * So, inside of ‘block-filters.js’ i still have the line
 * `wp.hooks.addFilter('wpBootstrapBlocks.row.templates', 'themename/wp-bootstrap-
   blocks/row/templates', myRowTemplates);`
 * but there is no such folder ”themename/wp-bootstrap-blocks/row/templates’ anymore
   and there is no such file ‘row.php’ anymore (but the default one from the original
   extension folder).
 * So, *why* is this *still working* (i have my 4-columns-option there and it works,
   but, yes, why) ??
 * Please, somebody, help me to not stay clueless, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap Blocks] Custom row template, again](https://wordpress.org/support/topic/custom-row-template-again/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/custom-row-template-again/#post-13168740)
 * Hm,
 * i had an error left in this line because of earlier tests with pathoptions:
    `
   get_stylesheet_directory_uri() . './block-editor/block-filter.js',`
 * One dot too much, that was:
    `get_stylesheet_directory_uri() . '/block-editor/
   block-filter.js',`
 * I can see the option now in the toolbar, it creates 4 columns in the backend.
 * Super nice.
    Will now try and remove that row template and see if it still works.
    -  This reply was modified 6 years, 1 month ago by [notknow](https://wordpress.org/support/users/notknow/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap Blocks] 4 column layout gone ??](https://wordpress.org/support/topic/4-column-layout-gone/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/4-column-layout-gone/#post-13131976)
 * Bummer.
    This is where my username comes to shine 🙂 Confused, me. Thank you 
   for telling me !!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] slug translation](https://wordpress.org/support/topic/slug-translation-4/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years ago](https://wordpress.org/support/topic/slug-translation-4/#post-11875119)
 * Hi Dennis,
 * yes, i did and i appears to be working well. Will get back here if i encounter
   something i cannot cope with 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] slug translation](https://wordpress.org/support/topic/slug-translation-4/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/slug-translation-4/#post-11817202)
 * Hey Dennis.
    I’m still working on the same website (among others) and now the
   last parts get fixed. Currently it seems to me that the snippet you posted here
   [https://wordpress.org/support/topic/translatable-cpt-slug-generates-wrong-urls-in-the-switcher/#post-10640191](https://wordpress.org/support/topic/translatable-cpt-slug-generates-wrong-urls-in-the-switcher/#post-10640191)
   does everything i need. Would be cool. Thx.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Translated category id differs from original, ‘child_of’ will not work as filter](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/#post-11386460)
 * Hi Dennis.
 * To be honest, it’s out of the strong relationship between me and Typo3 (since
   more than 10 years, not an extreme expert as i also do other stuff but i know
   my way around there). It’s practical to know every entity always keeps its id
   be it translated into one – or into more – languages. Makes filtering easy etc.
   And as you say it might bring a performance boost if i had to check on this quite
   often in the sources.
 * Thanks again for your kind support and for ‘thinking along’ with my question,
   a rare thing 🙂
 * Btw, the more i use your extension the more i like it. Translating categories
   and such also works nicely. I like the concept. I am on a low budget here but
   i will try and persuade my client to make a donation for it.
    -  This reply was modified 7 years, 5 months ago by [notknow](https://wordpress.org/support/users/notknow/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Translated category id differs from original, ‘child_of’ will not work as filter](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/#post-11383533)
 * Hi Dennis, thanks for your reply.
 * My version with the ‘get_locale’ switch within the template works.
    I was just
   wondering if there is a way to let categories in the second site (english) have
   the same category ids as those on the first site (german).
 * Then i would not have to have this ‘locale’-switch there, i.e. if i filtered 
   on ‘child-of’ => 8 i would have all child categories no matter which language
   is currently used in the frontend.
 * If i were to filter for children of category ‘General (Allgemein)’ i would not
   have to use this ‘globale’-switch as ‘General’-category has the id 1 (second 
   site) AND the ‘Allgemein’-category also has an id of ‘1’ (first site). All other
   categories do not have the same category-id for original and translation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] Translated category id differs from original, ‘child_of’ will not work as filter](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/translated-category-id-differs-from-original-child_of-will-not-work-as-filter/#post-11382132)
 * Simplest ‘for-now’ solution is to put a switch into the template:
 * if (get_locale() == ‘en_GB’) {…}
    else if (get_locale() == ‘de_DE’) {…}
 * and define two slightly different ‘wp_list_categories’-functions with different
   id’s as values for ‘child-of’ within. New years would get added automatically.
 * Now i am curious: could this behaviour be changed within MSLS easily? S’pose 
   not. Where did the enforcement take place to have ‘General’ have the id of ‘1’
   both within the original and the translation?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] MSLS loses connection between pages | MSLS verliert SeitenverknüpfungenHi there.](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/#post-10986684)
 * Uh, i how, did i? My trackpad is sometimes like ‘flickering’ and the mouse appears
   somewhere else again. I wouldn’t have known how to report a topic until now when
   i saw the text besides the flag – nothing i would have been aware of.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] MSLS loses connection between pages | MSLS verliert SeitenverknüpfungenHi there.](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/#post-10985379)
 * done 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multisite Language Switcher] MSLS loses connection between pages | MSLS verliert SeitenverknüpfungenHi there.](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/)
 *  Thread Starter [notknow](https://wordpress.org/support/users/notknow/)
 * (@notknow)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/msls-loses-connection-between-pages-msls-verliert-seitenverknupfungenhi-there/#post-10979842)
 * It appears that i just was not capable of understanding how Multi Site Language
   Switcher works… Hence my nickname, happens sometimes.
 * A VERY HUGE ‘Thank you’ to Dennis for looking into thie real quick. That really
   surprised me and was a very nice experience.
    -  This reply was modified 7 years, 9 months ago by [notknow](https://wordpress.org/support/users/notknow/).

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

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