• It would be great if the email that contains the backup sent by ithemes security had some descriptive information in the subject line, so I can tell which site the backup is from.
    Right now the subject line is “Site Database Backup Monday, April 18th, 2016 at 8:34 pm” without telling you which site it is from. That info is in the body, but that is less useful for sorting and organizing backup files from multiple sites using this product, just sayin.

    https://wordpress.org/plugins/better-wp-security/

Viewing 3 replies - 1 through 3 (of 3 total)
  • @jon

    As a workaround add the following code snippet to the functions.php file of your active theme:

    add_filter( 'itsec_backup_email_subject', 'itsec_backup_email_subject' );
    
    function itsec_backup_email_subject ( $subject) {
    
    	$subject = '[' . get_option( 'siteurl' ) . '] ' . $subject;
    
    	return $subject;
    
    }

    Tested and found to be working.

    dwinden

    Thread Starter Jon

    (@omanhene)

    Thanks for the reply, but it does not work for me.

    (I mostly was hoping to get this into their enhancements list, but since I am not a paying user, I don’t get access to that.)

    dwinden

    (@dwinden)

    @jon

    I’m sorry to hear it doesn’t work for you.

    I tested my workaround in a vanilla WordPress 4.5 env with the Twentysixteen theme active.

    dwinden

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Improvement Suggestion’ is closed to new replies.