Contact Page

Discussion in 'Photomaker WordPress Theme' started by blackdog2020liz, Jul 11, 2014.

  1. blackdog2020liz

    blackdog2020liz Member

    Joined:
    Dec 18, 2012
    Messages:
    264
    Likes Received:
    5
    Location:
    Western Australia
    Hi,

    How do I remove the title 'Location Map' on this page.

    Many thanks
    Liz
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
     <h1><?php echo LCN_MAP ?></h1>

    This will solve your issue.

    Thanks & Regards
    Gourav Shrivastava
     
  3. blackdog2020liz

    blackdog2020liz Member

    Joined:
    Dec 18, 2012
    Messages:
    264
    Likes Received:
    5
    Location:
    Western Australia
    Thanks Gourav, I removed that line but it didn't work.

    Liz
     
  4. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .contact-page h1:nth-last-child(2) {
    display:none;
    } 
    This will solve your issue.
     

Share This Page