Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #131803
    wednesdaycall
    Participant

    http://www.wednesdaycall.com
    all my pages now show the widgets (about, custom html, etc…) in each and every page of my website. how am I able to keep them in home page and remove them from other pages?

    #131804
    wednesdaycall
    Participant

    btw I added most of my widgets in “Before the Content”

    #131840
    Skandha
    Participant

    @wednesdaycall: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    body:not(.home) .widget-area {
         display:none;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    #131843
    wednesdaycall
    Participant

    oh it does thanks alot. and what if I wanted to remove some widgets and keep some other?

    #131844
    Skandha
    Participant

    @wednesdaycall: Yes, that is possible. Please tell me which widgets you want to remove and on which pages?

    Regards,
    Skandha

    #131887
    wednesdaycall
    Participant

    I want to remove “CT:About” and “CT:Video Embed” From page called “news-is-out”.

    #131891
    Skandha
    Participant

    @wednesdaycall: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .page-id-42 .widget-area {
    	display: block !important;
    }
    #ct-video-embed-7 {
    	display:none;
    }
    #ct-about-9 {
    	display:none;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘remove widgets from pages other than home page’ is closed to new replies.