Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1340266
    DerekbyDesign
    Participant

    Hi there!

    I want to transform my blog to look pretty much like the x-theme blog http://theme.co/blog/. Some problems with my blog is firstly

    1. To eliminate the header “The Blog”

    2. have control over the image size, or eliminate the image in the blog altogether yet still keep it as the “featured image” but not in the blog.

    I love the simplicity of x-theme’s blog http://theme.co/blog/why-tactikmedia-is-going-all-in-with-x-in-2017/

    I pretty much tried everything with the blog, my main focus in buying x-theme was for its blog capabilities. Its been hard please help!

    #1340298
    Christopher
    Moderator

    Hi there,

    Please add following code in Customize -> Custom -> Global CSS :

    .blog .x-header-landmark {
        display: none;
    }
    .blog .entry-featured {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
    

    To remove featured image, add this code :

    .blog .entry-featured {
        display:none;
    }

    Hope that helps.

    #1340367
    DerekbyDesign
    Participant

    Thank you for the awesome help!

    Can you help me with one more thing. My comments is allowed in the edit posts page but does not want to show up on a blog post.

    https://theblazingahead.com/silvertooth-opens-new-gym-to-employees

    How can I get the comments to show up on my blog post even when it is enabled (see image attached) should I add something extra?

    #1340382
    Christian
    Moderator

    Hey there,

    Would you mind providing us with WordPress Admin username / password so we can take a closer look?

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks.

    #1340517
    DerekbyDesign
    Participant
    This reply has been marked as private.
    #1340733
    Rad
    Moderator

    Hi there,

    You’re right, it’s not appearing. I manually added a comment in admin, looks like the comment template is not being called. Or the comments_open() is returning false. Let’s force it to true, please add this code to your child theme’s functions.php

    add_filter( 'comments_open', 'single_post_comment', 999, 2 );
    function single_post_comment( $open, $post_id ) {
    	return is_singular('post') ? true : $open;
    }

    Hope this helps.

    #1341174
    DerekbyDesign
    Participant

    Hi There,

    Once again thanks for your support! It is appreciated. I tried to add the code but still does not seem to be fixed. When I scroll down in the blog there is a pop-up that appears on screen in the bottom left. Don’t know if that can have an effect. I de-activated allot of ad-ons in the hope that the comments section would come back. How can i reset the whole system in the hope that it might work?

    Regrads

    #1341186
    DerekbyDesign
    Participant

    Hi There again,

    fixed the left popup seemed to be x-content dock lol. This did not resolve the comments issue however, thank you!

    #1341199
    Lely
    Moderator

    Hello There,

    Comment section is now showing on your post like here:https://theblazingahead.com/silvertooth-opens-new-gym-to-employees
    The issue is because comment section is closing after 14 days. It is set Discussion settings. See attached screenshot. I have unchecked it and comment section now appears. That post was posted last year which is beyond 14 days that is why it is not showing.

    #1341220
    DerekbyDesign
    Participant

    Hi Again,

    Thank you I fixed it! It was a plugin that was in the way!

    #1341232
    Lely
    Moderator

    Glad this is now sorted out.

    Cheers!

  • <script> jQuery(function($){ $("#no-reply-1340266 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>