Remove description/preview text?

Home Forums Gillion Theme Remove description/preview text?

Home Forums Gillion Theme Remove description/preview text?

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    RESOLVED Posts
  • amplitum
    Participant

    How to remove preview text from all posts? Post next to this doesn’t have preview text because I don’t put anything there… But this from attachment is text article and I don’t want any description under the title.

    Thanks!

    Attachments:
    You must be logged in to view attached files.

    Hi @amplitum,

     

    Thank you for your question.

     

    You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .blog .post-item .post-content {
        display: none;
    }

     

    Best regards,
    Shufflehound team

    amplitum
    Participant

    Still nothing… My site is on local host, I can’t send you url

    Attachments:
    You must be logged in to view attached files.

    Then please tell me exactly on which page it is displaying or which element you are using to display it along  with the whole screen screenshot of it.

    amplitum
    Participant

    This is standard txt blog post…

    Attachments:
    You must be logged in to view attached files.

    Then please try using below custom CSS code.

     

    article .post-item .post-content {
        display: none;
    }

    amplitum
    Participant

    Nope, not working.

    amplitum
    Participant

    Why you so slow in answering? 🙂 As I can see, you answer like one round of questions this day and tomorrow again… Don’t have a person who works just on this? Just asking… 🙂

    Solution for this topic

    We have to answer all the questions asked by every user every day and can’t assign dedicated support person for each user.

     

    What you are trying to achieve needs custom code as currently theme doesn’t provide this functionality. Developing custom code for custom functionality is beyond the scope of support that we provide here but still we try our best to help users.

     

    The code i have provided is working fine on my test site but not sure why it is not working for you. As your site is hosted locally which is making hard for me to troubleshoot it.

     

    So please try using following various code solutions or contact me when your site will be accessible for me.

     

    article .post-item .post-content {
        display: none !important;
    }

     

    .post-item .post-content {
        display: none !important;
    }

    amplitum
    Participant

    It works now. Thank you again. 🙂

    amplitum
    Participant

    Ohhh, now I have nothing when I open post…

    Solution for this topic

    To display it on opening the post, please try using below custom CSS code.

     

    .single-post #page-container .post-item .post-content {
        display: block !important;
    }

    amplitum
    Participant

    It’s working now. ♥️

    You are most welcome here 🙂

Viewing 14 posts - 1 through 14 (of 14 total)