Thanks
So the piece of code in the header I want to change is
<div class=”social-wrapper”>
<?php
$gdl_social_wrapper_text = get_option(THEME_SHORT_NAME.’_social_wrapper_text’);
if( !empty($gdl_social_wrapper_text) ){
echo ‘<div class=”social-wrapper-text”>’ . $gdl_social_wrapper_text . ‘</div>
It pulls ‘ . $gdl_social_wrapper_text . ‘from a number which I enter into the template admin control panel.
How would your example work here so that if it was page x it would show a new number otherwise apply code above?