Description
The “tcp_get_multilingual_template_path” filter allows to add a multilingual template. So TheCartPress could supports any multilingual plugins for WordPress.
Example
<?php
add_filter( 'tcp_get_multilingual_template_path', 'my_multilingual_template_path' );
function my_multilingual_template_path( $path ) {
$path = dirname( __FILE__ ) . '/my_template.php';
return $path;
}
Change Log
Since 1.1.1
