Title: andymurd's Replies | WordPress.org

---

# andymurd

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

 *   [Profile](https://wordpress.org/support/users/andymurd/)
 *   [Topics Started](https://wordpress.org/support/users/andymurd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/andymurd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/andymurd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/andymurd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/andymurd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/andymurd/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: [[Print Invoice & Delivery Notes for WooCommerce] EVERY WP Admin page redirecting to WCDN About page, wcdn-about](https://wordpress.org/support/topic/every-wp-admin-page-redirecting-to-wcdn-about-page-wcdn-about/)
 *  [andymurd](https://wordpress.org/support/users/andymurd/)
 * (@andymurd)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/every-wp-admin-page-redirecting-to-wcdn-about-page-wcdn-about/#post-9904319)
 * Hi, I just experienced a similar problem and a redirect loop after logging in
   to wp-admin. I figured out the root cause, and thought that putting some notes
   here might be helpful:
 * Recently, both woocommerce-delivery-notes and woocommerce-abandoned-cart were
   updated. Both plugins want to redirect to a welcome page after updating, but 
   the code for each attempts to intercept the GET request for the other’s page 
   and substitute its own. Again and again.
 * Might be better to just check that there is no `page` parameter before the welcome
   action:
 *     ```
                       if ( !isset( $_GET[ 'page' ] ) {
                               add_action( 'admin_init', array( $this, 'welcome' ) );
                       }
       ```
   
 * Looks like both plugins are authored by the same person/team, as they both have
   the same problem.

Viewing 1 replies (of 1 total)