Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created July 19, 2012 12:56
Show Gist options
  • Save pippinsplugins/3143628 to your computer and use it in GitHub Desktop.
Save pippinsplugins/3143628 to your computer and use it in GitHub Desktop.
Remove list indention
<?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