remove "recent articles" and "more articles" from oxygen showcase

  • I’m testing out the oxygen theme, and would like to remove the “recent articles” and “more articles” sections from the homepage (for which I’m using a showcase template). Is there a way for me to do that? Would I need to purchase the custom design upgrade?

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • I forgot to include the url!

    It’s aystest.wordpress.com

    Thanks!

  • Just had the same problem!

    The problem is, when you remove everything from the sidebars, they default to the widgets you see on your blog — even though you’ve taken them out of the widgets sections.

    The solution is, as soon as you add your desired widgets, the unwanted widgets disappear.

    The rub is, you can’t have ‘blank’ sidebars.

  • I think my sidebars are ok, although I’m still fiddling with them a bit. I’m wondering about the area directly below the featured post slider.

    Thanks!

  • Oh, sorry. Now, that, I do not know. I don’t know that you can.

    Perhaps you can play with the page template, and which page is for posts/home?

    Good luck

  • I guess what I need to know as someone who has almost no experience with css, is whether or not it’s possible to modify the css (via custom design upgrade) to remove elements (like “recent articles”) from the template.

    If it can’t be removed all together, I would settle for being able to rename it. But if I can’t get rid of that text, then I can’t use this (otherwise awesome) template.

    Anyone have advice for me?

  • OMG, I think I got it! So, I’m experimenting with the custom CSS editor (in preview, haven’t bought it yet), and by adding the code below, I removed the whole block under the slider:

    #primary {
    display: none
    }
    #tertiary {
    display: none
    }

    High five! Hope this helps someone!

  • So, in case anyone else ever reads this, I have an update. The code above removes the “recent articles” and such from the showcase template (home page in my case) but also removes the primary content from every page on the blog. To edit the showcase template only, the code should look like this:

    .page-template-showcase-php
    #primary {
    display:none;
    }

    #tertiary {
    display:none;
    }

    Like I said, I’m an absolute beginner with css :-)

  • Hi alicedutton,

    Thank you so much for the code.. I did that and I was able to delete “recent articles” and “more articles” from the showcase page..
    BUT

    It also Removed ‘Secondary Sidebar’, how can I have the secondary sidebar back?

    Thanks,

    Liya

  • Hi, yes this part:
    #tertiary {
    display:none;
    }

    removes the secondary side bar. But if you want it back, you’ll have to do some work repositioning it, because once you take out the “recent articles” block, the secondary sidebar floats left.

    Hope this helps!

  • The topic ‘remove "recent articles" and "more articles" from oxygen showcase’ is closed to new replies.