Last active
September 19, 2019 06:45
-
-
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/
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
/** | |
* 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