Skip to content

Instantly share code, notes, and snippets.

@webdados
Last active April 20, 2023 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdados/b3515d2f7d6ddafd58db33eb71e56db6 to your computer and use it in GitHub Desktop.
Save webdados/b3515d2f7d6ddafd58db33eb71e56db6 to your computer and use it in GitHub Desktop.
Style Simple WooCommerce Order Approval pay for this order email link
<?php
/* https://ptwooplugins.com/product/simple-woocommerce-order-approval/ */
/* Add this to you (child-)theme functions.php file, on a (mu-)plugin or with a plugin like Code Snippets https://wordpress.org/plugins/code-snippets/ */
add_filter( 'woocommerce_email_styles', function( $css ) {
return $css . '
#swoa-email-payment-button {
display: inline-block;
padding: 10px;
color: #ffffff;
background-color: #ff6633;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
font-size: 1.2em;
}
';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment