Osama_Mersal

Untitled

Feb 16th, 2025
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // WPML ATE shortcode numbers fix
  2. function wpmlsupp_7499_allow_translating_numbers( $is_translatable, $job_translate ) {
  3. $data = $job_translate['field_data'];
  4. if ( 'base64' === $job_translate['field_format'] ) {
  5. $data = base64_decode( $data );
  6. }
  7. if ( is_numeric( $data ) ) {
  8. return true;
  9. }
  10. return $is_translatable;
  11. }
  12. add_filter( 'wpml_tm_job_field_is_translatable', 'wpmlsupp_7499_allow_translating_numbers', 10, 2 );
  13.  
  14. <wpml-config>
  15. <shortcodes>
  16. <shortcode>
  17. <tag label="Kit shortcode">convertkit</tag>
  18. <attributes>
  19. <attribute>form</attribute>
  20. </attributes>
  21. </shortcode>
  22. </shortcodes>
  23. </wpml-config>
Add Comment
Please, Sign In to add comment