weglot_is_eligible_url
add_filter( 'weglot_is_eligible_url', 'custom_weglot_is_eligible_url', 10, 2 );
function custom_weglot_is_eligible_url( $eligible, $weglot_url ) {
// return true or false to force eligibility
return $eligible;
}Lets you force whether a URL is translatable. The filter receives the current decision and the URL object.
add_filter( 'weglot_is_eligible_url', 'custom_weglot_is_eligible_url', 10, 2 );
function custom_weglot_is_eligible_url( $eligible, $weglot_url ) {
// return true or false to force eligibility
return $eligible;
}