Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #726609

    Hi, is there a way to show a different number in the the top menu for a specific page than the number shown on all other pages?

    #726613

    Hi DROR!

    Since phone info field accepts HTML, you can wrap your text into span tag with custom class as following

    
    <span class="usual-text">here is my text</span><span class="unusual-text">This is my other text</span>

    and then hide/display them on certain pages by adding code block element to those pages

    
    <style>
    .usual-text { display: none !important; }
    </style>

    Cheers!
    Yigit

    • This reply was modified 8 years ago by Yigit.
    #726623

    Great, Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to change the phone number in the top menu for a specific page?’ is closed to new replies.