Home Forums WoodMart support forum Blog Element

Blog Element

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #107130

    shawnjason
    Participant

    Hello. This is my second purchase of your theme. I love it! Thank you.

    I could use your help with something though…

    When I add the blog element to a post, the only way I seem to be able to get the thumbail images to display in that element is to set “single post design” to be default in the blog theme settings. But when I do that, it displays the featured image and post info at the top of the page, which I do not want as I have built a blog post template from scratch.

    I found css code in the forums here to hide the image at the top, but when I do that, thumbnails in the blog element also disappear.

    What I would like is to be able to use the blog element at the bottom of posts and have the thumbnail images display there, but without the image and post info being displayed at the top of the post.

    Am I making sense? Can you help me with this?

    Thanks!

    #107144

    Artem Temos
    Keymaster

    Hi,

    We are glad that you like our theme.

    Could you please create a post with your configuration and send us your admin access so we can check it?

    Thank you in advance.

    #107153

    Hello,

    Add this code to the Theme Settings > Custom CSS > Global:

    body .post-single-page .entry-header {
        display: none;
    }

    The image would disappear on a single post page, however, blog page, as well as the page containing Blog element, will have the featured image.

    Best Regards

    #107178

    shawnjason
    Participant

    Private note below. Thanks.

    #107216

    Hello,

    Please provide the valid site admin access. The credentials provided do not work.

    Best Regards

    #107284

    shawnjason
    Participant

    My apologies… please try again. It should work now. Thanks.

    #107392

    Hello,

    Add the code to the Theme Settings > Custom CSS > Global

    .post-single-page > .article-inner .entry-header {
    	display: none;
    }

    Best Regards

    #107515

    shawnjason
    Participant

    Thanks, but that didn’t work either. That code removed images from the top of the page AND from the blog element and it left behind the rest of the post info at the top. I left the code in so you can see the result on the post link I gave you in the private note above.

    Do you have another idea that I can try?

    #107607

    Bogdan Donovan
    Keymaster

    Hi,

    Try to replace previous code with following CSS code snippet.

    .post-single-page > .article-inner > .entry-header {
    	display: none;
    }

    Regards

    #107720

    shawnjason
    Participant

    That’s a little closer. That code removes the image from the top of the page and keeps the images in the blog element 🙂 Great start. But, the rest of the post info still remains at the top of the page. It only removed the image. How can I remove the rest of the post info from the top of the page? You can see what’s happening at the link in the private content area above.

    #107721

    Bogdan Donovan
    Keymaster

    Hi,

    Try to replace previous code with following CSS code snippet.

    .post-single-page > .article-inner > .entry-header,
    .post-single-page > .article-inner > .meta-post-categories,
    .post-single-page > .article-inner > .entry-title,
    .post-single-page > .article-inner > .woodmart-entry-meta {
    	display: none;
    }

    Regards

    #107726

    shawnjason
    Participant

    Boom! There it is 🙂 Case closed. Thanks for your help.

    #107734

    Artem Temos
    Keymaster

    Great, you are welcome.

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

The topic ‘Blog Element’ is closed to new replies.