Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // WPML ATE shortcode numbers fix
- function wpmlsupp_7499_allow_translating_numbers( $is_translatable, $job_translate ) {
- $data = $job_translate['field_data'];
- if ( 'base64' === $job_translate['field_format'] ) {
- $data = base64_decode( $data );
- }
- if ( is_numeric( $data ) ) {
- return true;
- }
- return $is_translatable;
- }
- add_filter( 'wpml_tm_job_field_is_translatable', 'wpmlsupp_7499_allow_translating_numbers', 10, 2 );
- <wpml-config>
- <shortcodes>
- <shortcode>
- <tag label="Kit shortcode">convertkit</tag>
- <attributes>
- <attribute>form</attribute>
- </attributes>
- </shortcode>
- </shortcodes>
- </wpml-config>
Add Comment
Please, Sign In to add comment