when i install and activate polylang plugin for language transaltion it dismiss archive:trips from tours.
is this because of load_plugin_textdomain is set false?
function load_textdomain() {
$locale = is_admin() && function_exists( ‘get_user_locale’ ) ? get_user_locale() : get_locale();
$locale = apply_filters( ‘plugin_locale’, $locale, ‘wp-travel’ );
unload_textdomain( ‘wp-travel’ );
load_textdomain( ‘wp-travel’, WP_LANG_DIR . ‘/wp-travel/wp-travel-‘ . $locale . ‘.mo’ );
load_plugin_textdomain( ‘wp-travel’, false, dirname( plugin_basename( __FILE__ ) ) . ‘/i18n/languages’ );
}
how do i make languahe translation in polylang? can i make the load_plugin_textdomain set to true and work?
how do i access the archive:trips page with shortcode?