EduardET

Untitled

May 25th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         var lang = $( 'html' ).attr( 'lang' );
  5.         if ( lang === 'en-US' ) {
  6.             $( '.et_pb_contact_field_options_wrapper .et_pb_contact_field_options_title' ).after( '<a href="link for EN lang">Text for en lang</a>' )
  7.         }
  8.         if ( lang === 'de-DE' ) {
  9.             $( '.et_pb_contact_field_options_wrapper .et_pb_contact_field_options_title' ).after( '<a href="link for DE lang">Text for DE lang</a>' )
  10.         }
  11.         if ( lang === 'es-ES' ) {
  12.             $( '.et_pb_contact_field_options_wrapper .et_pb_contact_field_options_title' ).after( '<a href="link for ES lang">Text for ES lang</a>' )
  13.         }
  14.         if ( lang === 'pl-PL' ) {
  15.             $( '.et_pb_contact_field_options_wrapper .et_pb_contact_field_options_title' ).after( '<a href="link for PL lang">Text for PL lang</a>' )
  16.         }
  17.     } );
  18. } )( jQuery )
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment