Skip to content

Instantly share code, notes, and snippets.

@xadapter
Last active September 19, 2019 06:45
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 xadapter/23dc533d6e166b76fa25d0c8d4fd0f5b to your computer and use it in GitHub Desktop.
Save xadapter/23dc533d6e166b76fa25d0c8d4fd0f5b to your computer and use it in GitHub Desktop.
Snippet to change Estimated Delivery date style on cart page using Estimated Delivery Date Plugin for WooCommerce by PluginHive - https://www.pluginhive.com/product/estimated-delivery-date-plugin-woocommerce/
/**
* Snippet to change Estimated Delivery date style on cart page.
* Created at : 24 Aug 2018
* Updated at : 24 Aug 2018
* PluginHive Plugins : https://www.pluginhive.com/plugins/
* Gist Link : https://gist.github.com/xadapter/23dc533d6e166b76fa25d0c8d4fd0f5b
*/
add_filter( 'xa_estimated_delivery_cart_checkout_page_html_formatted_date', function($date) {
$date = str_replace( '<td', '<td style="font-weight: bold;"', $date);
return $date;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment