Home Forums Free Themes Photo Perfect About posts with featured images

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #4171
    Renieh
    Participant

    Hi,

    First of all I would like to thank you for the Photo Perfect theme and the support that you are giving.

    I am currently evaluating this theme for my website. I like the theme very much, but I would like to change some minor things. I scanned the forum page, but could not find an answer for these questions:

    1.)
    Following a recommendation I used the primary menu for the “interesting” posts and the footer menue for the “necessary” posts.

    On the homepage I would like to restrict the featured fotos to those posts, that are referenced to from the primary menu.

    2.)
    Is there also a recommendation for the image size of the posts, so that the featured images on the homepage look very regular?

    Thanks in advance

    Renieh

    #4178
    wensolutions
    Keymaster

    Hello @Renieh

    Thanks for your appreciation towards the theme and support.

    1.Following a recommendation I used the primary menu for the “interesting” posts and the footer menue for the “necessary” posts.

    I was a bit confused about your first question. Primary menu for the “interesting” posts. Will you elaborate this a bit more with the recommendation source??
    And can you please post your site URL so that it will be easy to debug.

    2.)
    Is there also a recommendation for the image size of the posts, so that the featured images on the homepage look very regular?

    And it is hard to guess the image size of the posts to look regular without your site’s URL.

    Best Regards!!

    #4197
    Renieh
    Participant

    Hi wensolutions,

    thank you for your quick response.

    the recommendation was in a german blog. The idea was that you have content that you want to show, and content that you are obliged to offer . For example: I want to show my fotos (1), but in Germany we are forced by regulation to publish legal information (terms and conditions) (2).

    The recommendation says, that the information for the first category should be more prominent, whereas the other information would only be accessible from the footer menu.

    Currently my website has a splash homepage (work-in-progress), so therefore you could not see much there.

    I hope nevertheless that I could explain the desired function better than in my first post.

    Regards

    Renieh

    #4240
    wensolutions
    Keymaster

    Hello @Renieh

    Its very hard to figure out what was your issue without your site URL. If your site is work in progress then you may provide us screenshot to show your issue and it would me much clear.
    And for the recommendation image size, if you want them regular you need to upload your images of same size (i.e: height and width).
    It would be much easier if you site was not under construction.

    Regards!!!!

    #4243
    saeb
    Participant

    is there any way to can use feature photo as header or background picture?

    #4244
    wensolutions
    Keymaster

    Hello @saeb

    Please create a new thread/topic for your issue.

    And for your query to use feature photo as header or background picture, you need to go to particular post/page edit screen and when you scroll down the page you will see Theme Settings section. In this section you need to enable check-box saying Use Featured Image as Banner as shown in below screenshot.
    http://prntscr.com/al0v24

    Hope this will help to resolve your issue.

    Best Regards!!!

    #4246
    saeb
    Participant

    tnx a lot for responding that fast.
    but i dont have that option! is that in pro version only?
    https://www.diigo.com/item/image/5ars/ths0

    #4250
    wensolutions
    Keymaster

    Yes, of course this option is available in Pro version of Photo Perfect theme.

    You can check out more awesome features here .

    #4254
    Renieh
    Participant

    Hi wensolutions,

    attached please find the screenshots from my website.

    This is my primary menu
    Primary Menu

    This is the footer menu
    Footer Menu

    This is the view of the featured images
    Featured images

    I have marked those photos, which I don´t want to appear among the featured photos with a red diagonal line. These are the photos that are in the posts from the footer menu.

    Thanks for again for your support.

    Renieh

    #4291
    wensolutions
    Keymaster

    Hello @Renieh

    For the solution of your query you need to create and activate child theme for that.
    Reference here for child theme.
    After successfully creating child theme you need to add the below code in you child theme’s functions.php file.

    
    function exclude_single_posts_home($query) {
      if ($query->is_home() && $query->is_main_query()) {
        $query->set('post__not_in', array(252,254,256)); //post ID's
      }
    }
    
    add_action('pre_get_posts', 'exclude_single_posts_home');
    

    Note: The ID’s that are inside the array are the post ID’s of the post that you have added in the footer menu. This will hide those posts from home page as you have requested.
    Hope this will help to resolve your issue.

    Regards!!!

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