• Resolved wbbuesch

    (@wbbuesch)


    First of all thanks for a great theme. I think I may have found a couple bugs.

    1) The first one has to do with the “Comment” buttons in the blog feed with the small image on the left. This started happening after the most recent update(s). In “Customize” when I select “Yes” to show the buttons in the blog feed, then only the “Read More” button is shown. The comments button does not appear! Only when I delete one of the labels (“Comment, Comments”, or “Leave Comment”) does the button show up. I managed a quick and dirty fix by changing the following line of code in content.php of the theme code, towards the bottom in the “Post Buttons” section:

    Changed:
    if($nocomments == ” || $comment == ” || $comments == ”)
    To:
    if($nocomments == ” || $comment == ” || $comments == ” || true)

    … but this is certainly not the optimal fix.

    2) For some reason, for all posts before the update the sidebar font is bold. For the one post since the update, the sidebar font is how it supposed to look (not bold).

    Here is the website: realfoodflavor.com

    And a quick question:
    Which class will affect the font size, style, etc. of the comments themselves (they are also bold)? In the code I only see they are surrounded by <p></p>.

    Thanks!

    • This topic was modified 8 years ago by wbbuesch.
Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author lyrathemes

    (@lyrathemes)

    Just so you know, I am looking into this right away. If you can show me a link to the page with comments that are bold, it’ll help.

    Theme Author lyrathemes

    (@lyrathemes)

    I am unable to replicate the comments/sidebar bug. Please see https://demo.lyrathemes.com/vega/2016/02/01/hello-world-2/ I will need the link to where you’re having this problem in order to see what’s causing it.

    Thread Starter wbbuesch

    (@wbbuesch)

    I just updated my post. I don’t think the problem has anything to do with comments or no comments.

    Theme Author lyrathemes

    (@lyrathemes)

    Then you probably have an unclosed tag in your post. Remove all content from the post to test again.

    Theme Author lyrathemes

    (@lyrathemes)

    For the comment button, you’re right. We’ll push a fix in the next update. For now, edit the following files:

    parts/content.php – lines 124, 125
    parts/content-recent.php – lines 67, 68

    <?php if($nocomments != '' && $comment != '' && $comments != '') 
          comments_popup_link( $nocomments, '1 ' . $comment, '% ' . $comments, 'btn btn-inverse btn-comments' ); ?>
    Thread Starter wbbuesch

    (@wbbuesch)

    Thanks!!

    How is an unclosed tag possible using only the Text editor in WordPress? I tried removing the content from both posts before and after the update, but it didn’t help… I will have a look at some of the actual page HTML to see if I can find the error.

    • This reply was modified 8 years ago by wbbuesch.
    Thread Starter wbbuesch

    (@wbbuesch)

    Aha! You are right. ?? … I found the unclosed tag. It wasn’t in the post, but rather in my child theme single.php… I added the Previous/Next links at the bottom of the post and had “<b> … <b>” – not properly closed. Problem fixed!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘A couple bugs (Blog Feed Buttons and Sidebar Text Formatting)’ is closed to new replies.