Created
July 19, 2012 12:56
-
-
Save pippinsplugins/3143628 to your computer and use it in GitHub Desktop.
Remove list indention
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function edd_remove_list_indention( $email_body ) { | |
$email_body = str_replace('<ul>', '<ul style="margin:0 0 10px;padding:0;">', $email_body); | |
$email_body = str_replace('<li>', '<li style="margin:0 0 8px;padding:0;">', $email_body); | |
return $email_body; | |
} | |
add_filter('edd_purchase_receipt_default', 'edd_remove_list_indention'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment