Popular Posts Widget tabs rename and remove

Hi,

  1. Is it possible to rename Popular Posts Widget tabs and remove the 3rd tab(comment)?
  2. I also want the Homepage Widgets to appear in my static home page only, not in any other pages.

I am doing this site for our church for FREE. :slight_smile:

Thanks!

Issue #2 resolved.

I needed an answer for #1. Thanks!

Also, how to make the background color NOT fill the Popular Widget content.

Hi @wreckseal,

I hope you are well today and thank you for your questions.

1. Is it possible to rename Popular Posts Widget tabs and remove the 3rd tab(comment)?

You can rename Popular Posts Widget tabs by translating the theme as described on the following page.

You can remove the 3rd tab(comment) by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Theme Options -> Other -> Custom CSS

.widget.tabbed .nav-tabs li:last-child {
    display: none;
}

Also, how to make the background color NOT fill the Popular Widget content.

You can do so by using the below CSS code as described above.

.widget.tabbed .tab-content {
    background: #fff;
}

Best Regards,
Movin