WPML
สถานะ
แก้ไขแล้ว
ปลั๊กอิน/ธีมที่เกี่ยวข้อง
The Events Calendar PRO

ภาพรวมของปัญหา

เมื่อแปลข้อความที่จัดเก็บโดยปลั๊กอิน The Events Calendar ในตาราง wp_options (ข้อความผู้ดูแลระบบ) เวอร์ชันภาษาต้นฉบับจะแสดงในส่วนหน้าเว็บไซต์

ตัวเลือก The Events Calendar

วิธีแก้ปัญหาชั่วคราว

สามารถแก้ไขการแปลได้โดยเพิ่มโค้ดต่อไปนี้ลงในไฟล์ functions.php ของธีมของคุณ:

add_filter('tribe_get_single_option', 'tribe_options_multilingual', 20, 3);

function tribe_options_multilingual( $option, $default, $option_name ) {
	if (is_string($option)) {
		return apply_filters( 'wpml_translate_single_string', $option, 'admin_texts_tribe_events_calendar_options', '[tribe_events_calendar_options]' . $option_name);
	} else {
		return $option;
	}
}

ปัญหาที่ทราบแล้วทั้งหมด →