• Resolved PratamaDA

    (@pratamada)


    I really wan to change the caption on the sidebar ( Follow & More ) to my own caption, does anybody figure it out how?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Its hard coded in PHP. You need to rewrite some theme files.

    1. Create a working child theme and activate it.
    Look at this instruction on creating child themes: https://codex.www.ads-software.com/Child_Themes

    2. Copy ‘sidebar.php’ and ‘sidebar-2.php’ from main theme(Heuman) folder into your newly created child theme folder.

    3. Now edit both file; at line 15 of sidebar.php and sidebar-2.php respectively, there are ‘Follow’ and ‘More’ that you can replace with other desired word.

    4. Save the file.

    I agree that you should use a child theme, but you can do it with css:

    .s1 .sidebar-top p:first-child,
    .s2 .sidebar-top p:first-child {
      display: none;
      }
    .s1 .sidebar-top:after {
      content: "New Heading Left";
      }
    .s2 .sidebar-top:after {
      content: "New Heading Right";
      }
    .s1 .sidebar-top:after,
    .s2 .sidebar-top:after {
      padding: 5px 0;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
    }

    Ah. That should be easier.

    Thread Starter PratamaDA

    (@pratamada)

    thanks guys, i tried the css by bdbrown, works like a charm ??

    Glad I could help.

    Hey bdbrown, i did this modification and another one that you suggested using css on my style.css (child theme) and it does not change.

    The other modification was to change from icons to text the alxtabs widgets.

    .s1 .alx-tabs-nav .fa.fa-star:before {
    content: “Popular”;
    }

    .s1 .alx-tabs-nav .fa.fa-clock-o:before {
    content: “Recente”;
    }

    Am I doing something wrong?

    Hi lucascunha. This thread has been marked as resolved so it won’t normally be reviewed for new posts. Please start a new topic and you can reference this one in your question. Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to change "Follow & More" Caption on Sidebar?’ is closed to new replies.