Title: supconstella's Replies | WordPress.org

---

# supconstella

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple Domain] Stop rewriting of links to one of the multiple domains](https://wordpress.org/support/topic/stop-rewriting-of-links-to-one-of-the-multiple-domains/)
 *  [supconstella](https://wordpress.org/support/users/supconstella/)
 * (@supconstella)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/stop-rewriting-of-links-to-one-of-the-multiple-domains/#post-14265985)
 * I had the same problem today. When you check to source code you can find :
    add_filter(‘
   the_content’, [ $this, ‘fixContentUrls’ ], 20);
 * Which it search in the content and modify the link domain(if it was different)
   for the currently domain.
 * You just need to add an action in your child’s theme functions.php like this :
   
   function remove_fixContentUrls() { if (!class_exists(‘MultipleDomain’)) { return;}
   $multipleDomain = MultipleDomain::instance(); remove_filter(‘the_content’, array(
   $multipleDomain, ‘fixContentUrls’), 20); }
 * add_action(‘init’, ‘remove_fixContentUrls’);
 * And it works fine for me. I hope it helps you and other as well

Viewing 1 replies (of 1 total)