Viewing 7 replies - 16 through 22 (of 22 total)
  • Thread Starter gokh

    (@gokh)

    I installed Simple Custom CSS and JS plugin. I applied the code you specified, but it did not happen.

    https://i.hizliresim.com/z0LN7g.jpg

    Theme Author terrathemes

    (@terrathemes)

    You pasted this inside the JS comment that starts and ends with /* comment here */. So please try to remove the comment and just use the code I gave you.

    The .fa-phone is correct, since the new icon is set through CSS.

    Thread Starter gokh

    (@gokh)

    Comment removed. Not working.

    Theme Author terrathemes

    (@terrathemes)

    Please also remove the line with jQuery(document).ready() and the bracket at the end that is part of it.

    jQuery(function($) is already the (document).ready().

    Thread Starter gokh

    (@gokh)

    there is problem

       jQuery(function($) {
      if ( $('.meteorite-contact-info').length ) {
      	$(this).find('.contact-phone').html('<span><i class="fa fa-phone"></i></span><a href="tel:+9005423141341">0 542 314 13 41</a>');
      }
           
    );
    Theme Author terrathemes

    (@terrathemes)

    You removed a bracket to much. Please use this code as it is

    jQuery(function($) {
      if ( $('.meteorite-contact-info').length ) {
      	$(this).find('.contact-phone').html('<span><i class="fa fa-phone"></i></span><a href="tel:+9005423141341">0 542 314 13 41</a>');
      }
    });
    Thread Starter gokh

    (@gokh)

    Now it’s good.

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Contact page mobile’ is closed to new replies.