WPML
-
Hi Tijmen
Currently the plugins front-end is not compatible with WPML, if you alter the /templates/default.php file this is easily solvable by changing the ecs_html entries to esc_html_x like this:
$output .= '<div><label for="wpsl-search-input">' . esc_html( stripslashes( $this->settings['search_label'] ) ) . '</label></div>' . "\r\n";Becomes:
$output .= '<div><label for="wpsl-search-input">' . esc_html_x( stripslashes( $this->settings['search_label'] ) ) . '</label></div>' . "\r\n";Now when you scan plugins in WPML the relevant front-end labels are localisable.
The only text I cannot get to localise are the addresses themselves and the ‘Get Directions’ text. Is there currently anyway of doing this?
Thanks for the great plugin! Will be using it again!!
The topic ‘WPML’ is closed to new replies.