Plugin Author
RazyRx
(@razyrx)
Hello,
If you mean limitation that you can set on product edit page, then you can change this text with help of any translation plugin like Loco Translate https://ww.wp.xz.cn/plugins/loco-translate/
Regards,
Oleg
I mean this code here
//TEXT FOR PRODUCT LIMITATIONS
$product_text_errors = array(
‘product’ => array(
‘min_qty_text’ => __(‘Quantity of product %products% can not be less than %value%‘, ‘minmax-quantity-for-woocommerce’),
‘max_qty_text’ => __(‘Quantity of product %products% can not be more than %value%‘, ‘minmax-quantity-for-woocommerce’),
‘min_price_text’ => ”,
‘max_price_text’ => ”,
),
‘variation’ => array(
‘min_qty_text’ => __(‘Quantity of one variation of a %products% product can not be less than %value%‘, ‘minmax-quantity-for-woocommerce’),
‘max_qty_text’ => __(‘Quantity of one variation of a %products% product can not be more than %value%‘, ‘minmax-quantity-for-woocommerce’),
‘min_price_text’ => ”,
‘max_price_text’ => ”,
)
);`
If I want to change the text for min_qty_text or max_qty_text can this not be done without another plugin?