Woocommerce adding custom text to checkout page by specific product

First of all, I am learning a lot day by day on here, thank you. I hope some of you can help with this. I want to add a custom text to the WooCommerce Checkout page. But I want this text to appear only in a specific product. For example, I want to add a… Read More Woocommerce adding custom text to checkout page by specific product

How to adjust the column size of WooCommerce admin products table

I have added some extra columns in my WooCommerce admin products list but the columns are not adjusted according to values and I have the following problem How can I change CSS of the table table.fixed { table-layout: fixed; } >Solution : add_action(‘admin_enqueue_scripts’, ‘wc_product_list_css_overrides’); function wc_product_list_css_overrides() { wp_add_inline_style(‘woocommerce_admin_styles’, "table.wp-list-table .column-sku{ width: 9%; } table.wp-list-table .column-name{… Read More How to adjust the column size of WooCommerce admin products table