Remove the navigation

Discussion in 'Dzonia WordPress Theme' started by fcrecca, Mar 28, 2013.

  1. fcrecca

    fcrecca New Member

    Joined:
    Mar 26, 2013
    Messages:
    4
    Likes Received:
    0
    Hi,

    How to remove the navigation next posts and previous posts on every page and show the page heading instead.

    I have a screenshoot of what i wants.

    Thanks
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .page_navi_bg #crumbs {
    display: none;
    }
     
  3. fcrecca

    fcrecca New Member

    Joined:
    Mar 26, 2013
    Messages:
    4
    Likes Received:
    0
    Hi Gourav,

    The Code doesn't work. The navigation is still there. Is there any way i can directly remove in the code?

    Thanks.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello Fcrecca,
    Go to the page.php file present in your theme directory and remove the code given below from that file as shown in the image given below.
    Code:
    <div class="page_navi">
            <?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?>
          </div>
    for the reference see the image given below
    [​IMG]


    Similarly, do the above steps with the template-contact.php, template-fullwidth.php and template-gallery.php files present in your Theme Directory.
    This will solve your issue.
     

Share This Page