Contact strip

Discussion in 'Andrina WordPress Theme' started by stewarty, Jan 22, 2014.

  1. stewarty

    stewarty New Member

    Joined:
    Sep 9, 2012
    Messages:
    21
    Likes Received:
    0
    HI,

    There is a strip just above the footer on my home page that contains my contact number and email address. How do I get it to appear on every page above the footer?

    Thanks,
    Gareth
    www.asisevents.com
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the blog.php file present in your theme directory and paste the code given below in this file as instructed in the image given below.

    Code:
    <div class="index-info">
        <div class="grid_6 alpha">
            <div class="index-info-one">            
                <?php if (inkthemes_get_option('inkthemes_contact_no') != '') { ?>
                <span><?php echo stripslashes(inkthemes_get_option('inkthemes_contact_no')); ?></span>
                <?php } else { ?>
                <span><?php _e('9981-121212','andrina'); ?></span>
                <?php } ?>                       
            </div>
        </div>
    <div class="grid_7">
    <div class="index-info-two">
    <?php if (inkthemes_get_option('inkthemes_email_add') != '') { ?>
    <a href="mailto:<?php echo stripslashes(inkthemes_get_option('inkthemes_email_add')); ?>">
    <span><?php echo stripslashes(inkthemes_get_option('inkthemes_email_add')); ?></span></a>
    <?php } else { ?>
    <span><?php _e('[email protected]','andrina'); ?></span>
    <?php } ?>
    </div>
    </div>
        <div class="grid_11 omega">
            <div class="index-info-three">
                 <?php if (inkthemes_get_option('inkthemes_date') != '') { ?>
                <span><?php echo stripslashes(inkthemes_get_option('inkthemes_date')); ?></span> 
                <?php } else { ?>
                <span><?php _e('Monday To Saturday 8 Am To 8 Pm','andrina'); ?></span> 
                <?php } ?>            
            </div>
        </div>
    </div> 
    See the image for reference

    [​IMG]


    Similarly, do the same in the page.php , template-fullwidth.php , template-gallery.php ,template-contact.php and single.php file.

    This will solve your issue.
     

Share This Page