emove category info and comments from Product pages

Discussion in 'Figero WordPress Theme' started by sworldconsult, Jan 22, 2013.

Thread Status:
Not open for further replies.
  1. sworldconsult

    sworldconsult Member

    Joined:
    Dec 28, 2012
    Messages:
    33
    Likes Received:
    0
    I am creating product pages using the blog template as shown in the documentation for Figero theme. But I do not want the post info, category info with the pin image, and the comments box for pages and for posts to be displayed.
    I used this code from one of the thread in this forum to successfully remove the post info.
    .content-info .light {
    display: none;
    }
    How can I remove the category info as well as the comments box from all product pages and posts?
    Please advise.
    Thx

    PS: Pls edit the thread title to read: "Remove category info and comments from Product pages".
     
  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:
    div.cat {
    display: none;
    }
    2.For your second issue
    Go to single.php present in your theme directory and remove the code viven below

    Code:
    <!--Start Comment Section-->
                                <?php comments_template(); ?>
                                <!--End comment Section-->
    Sending image for reference

    [​IMG]
     
  3. sworldconsult

    sworldconsult Member

    Joined:
    Dec 28, 2012
    Messages:
    33
    Likes Received:
    0
    It worked. Perfect.
    Thank you.
     
Thread Status:
Not open for further replies.

Share This Page