diff --git a/replicate_ui.module b/replicate_ui.module
index 4181204..20ae546 100644
--- a/replicate_ui.module
+++ b/replicate_ui.module
@@ -156,7 +156,9 @@ function replicate_ui_confirm_submit($form, &$form_state) {
       $form_state['replica_id'] = $id;
       $form_state['replica_type'] = $entity_type;
       // redirect to the new item
-      drupal_set_message(t('%type (%id) has been replicated to id %new!', array('%type' => $entity_type, '%id' => $entity_id, '%new' => $id)));
+      if (empty($form_state['replicate_ui_hide_message'])) {
+        drupal_set_message(t('%type (%id) has been replicated to id %new!', array('%type' => $entity_type, '%id' => $entity_id, '%new' => $id)));
+      }
       $form_state['redirect'] = $path;
       
       if (module_exists('rules')) {
