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?
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
Great, Thanks!