Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #335105
    carlos.operti
    Participant

    Hello there,

    I’m using clean fotografie free.

    Is there a way to set the featured image not to appear in the page/post itself? I want it to just feed the posts list, hero content, featured content, etc, not to show in the top of the actual page or post.

    And when I set up a page with a block that presents a list of posts from certain category, and check the option “Enable featured post” in the block’s settings, the featured image of the featured post is cropped to a wide and short ratio. Is there a way to bypass this crop and show the image in its original ratio size?

    The website is in maintenance mode, thus not avaiable, as I’m working on the new version.

     

    Thank you, and best regards

    #335107
    sujapati
    Keymaster

    Hello Carlos,

    For the first one:
    To disable the featured image on the detail page or the entire site, navigate to the admin dashboard. From there, access Appearance => Customize => Header Media. You will find a list of options to enable or disable the header media.

    For the second:
    We have explored various blocks such as post lists, category lists, and latest posts blocks but haven’t located the ‘Enabled Featured Post’ option you mentioned. Could you please specify the exact block you are using? Also, if possible, could you share your site URL so that we can examine it in detail?

    Kind Regards,
    Sujapati

    #335108
    carlos.operti
    Participant

    Hello, Sujapati

    Thanks for your reply.

    I’m not talking about the header image at the home page, but the featured image option for every page and post. When I create a page or a post and upload an image to be the featured image, it will apear at the top of every page or post. I don’t want that, I just want this images to feed the posts lists, the hero widget at the home page, the featured content widget at the home page, and so on.

    Here’s the page with the featured image appearing at the top of the page content space https://www.carlosoperti.com/documental/ I don’t want that big photo topping the actual content of the page. Under that, the content block where I selected the feature POSTS, which allows to show a list of posts from any given category inside a page, using the page builder Otter. It brings the function “Enable featured post”, showing the latest post of the chosen category in a highlighted form, but in the process cropping the post’s featured image in a odd way. I would like the image to appear in its original format.

    Here https://www.carlosoperti.com/printscreens/ you can see the print of the wordpress admin screen showing the page builder.

     

    Thank you

    #335110
    sujapati
    Keymaster

    @carols:

    Apologies for any miscommunication. To disable the featured image on single posts/pages, please navigate to Appearance => Customize => Theme Options => Layout Options. Here, you will find the option for Single Page/Post Image. You can disable it from there.

    Regarding cropping the posts’ featured images, you can restore them to their original format by adding the following CSS.

    
    
    .wp-block-themeisle-blocks-posts-grid .o-featured-container .o-featured-post .o-posts-grid-post-image a img {
    height: auto;
    }

    Please feel free to ask if you require further clarification or have any additional queries.

    Regards,
    Sujapati

    #335115
    carlos.operti
    Participant

    Hi, Sujapati

    Thank you again for the support. The css code to the crop problem worked fine, but the Clean Fotografie free theme doesn’t have the option to disable the featured image on single post/page at the layout options menu, just the checkbox to chose between left sidebar or no sidebar at the “Singular Content Layout” option.

    Also, the title HOME is appearing at the bottom of the home page for no reason, and I can see where to disable.

     

    Thanks again

    Best regards

    #335118
    sujapati
    Keymaster

    @carlos: Sorry for the inconvenience. This feature is only available in Pro version where you can disable it from Theme Customizer in just a click. So, I recommend you to upgrade to pro version. For free version, it will be bit technical  and you can disable that by building child theme or hide it using Custom CSS.

    
    
    .single .post-thumbnail,
    .page .post-thumbnail {
    display: none;
    }
    
    

    Kind Regards,
    Sujapati

    #335123
    carlos.operti
    Participant

    This css pulls the featured image from posts/pages, but also from the hero widget, from posts lists, from featured content widget on the home page, and so on, preventing the use of those features.

    And also the title HOME is appearing at the bottom of the home page for no reason, is there a way to disable that?

     

    Thank you very much

    #335125
    sujapati
    Keymaster

    @carlos: Please disregard the previous CSS code as it is not the optimal solution, and kindly replace it with the following.

    
    
    body:not(.home) .singular-section .post-thumbnail {
    display: none;
    }
    
    

     
    <div>For the title HOME in front page, you can remove it by adding CSS  below:

    </div>
    <div>

    </div>
    <div>.home .site-content .content-area main .entry-header h1 {
    display: none;
    }</div>
    <div>

    </div>
    <div></div>
    <div>Regards,
    Sujapati</div>

    • This reply was modified 2 weeks, 5 days ago by sujapati.
    #335126
    carlos.operti
    Participant

    That worked just fine!

     

    Many thanks

    #335128
    sujapati
    Keymaster

    @carlos: We’re pleased to hear that. If you encounter any other theme-related issues, please don’t hesitate to reach out.

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.