How am I supposed to change the headline of the column where the user is supposed to add the quantity of items (“Quantity” by default)?
wpxteam
Hi Ana,
Currently, we don't have an option to change this. Anyway, you can use the following snippet to your child theme's functions.php file:
add_filter('pvtfw_columns_labels', 'pvt_customize_table_header'); function pvt_customize_table_header($default_column_lables){ $custom_labels_ptvfw = array( 'quantity' => __('CusTom', 'product-variant-table-for-woocommerce'), //Replace CusTom with your preferred text ); return array_replace($default_column_lables, $custom_labels_ptvfw); }
We will wait for your feedback.
Thank you
AnaRamos