- الحالة
- محلولة بواسطة المطور
- تم حلها في
- YITH Request a Quote for WooCommerce 2.37.0
- الإضافة/القالب ذو الصلة
- YITH WooCommerce Request a Quote
- وسوم الموضوع
- Compatibility, WCML
نظرة عامة على المشكلة
عند استخدام إضافة YITH Request a Quote for WooCommerce، لا تُترجم بعض السلاسل مثل «Product» و«Quantity» في عرض الهاتف المحمول لصفحة «Request a Quote».
حل بديل مؤقت
يُرجى التأكد من أخذ نسخة احتياطية كاملة لموقعك قبل المتابعة.
- افتح الملف …/wp-content/plugins/yith-woocommerce-request-a-quote/templates/request-quote-view.php.
- ابحث عن السطر 67.
- استبدل:
<td class="product-name" data-title="Product">
- بـ:
<td class="product-name" data-title="<?php esc_attr_e( 'Product', 'woocommerce' ); ?>">
- في نفس الملف، ابحث عن السطر 132.
- استبدل:
<td class="product-quantity" data-title="Quantity">
- بـ:
<td class="product-quantity" data-title="<?php esc_attr_e( 'Quantity', 'woocommerce' ); ?>">