Too Many 'Contact Us'

Discussion in 'Poloray WordPress Theme' started by spoonboy90, Mar 25, 2013.

  1. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    yvonnevidal likes this.
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .contact-page h1 {
    display: none;
    }
    2.For your second issue

    Go to template-contact.php present in your theme directory and add the code given below

    Code:
        <label for="contactName">Enter your text here:<span class="required">*</span></label>
                          <input type="text"  id="contactName" name="contactName"  value="<?php if (isset($_POST['contactName']))
                            echo $_POST['contactName']; ?>" class="required requiredField"/>
                            <?php if ($nameError != '') { ?>
                            <span class="error"> <?php echo $nameError; ?> </span>
                            <br/>
                            <?php } ?>
                          <br /><br />
    Sending image for reference
    [​IMG]
     

Share This Page