Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1044520
    DesignMunky
    Participant

    Hi Guys,

    I am creating a website that has the Biographies of over 500 WWII Spitfires Pilots.

    I need to make a few tweaks to the Blog Page that shows the Post for each Pilot
    (eg: http://design-munky.com/spitfire/adam-john-phillip-2/ )

    1. Remove the Leave a Reply Section that appears at the bottom of each post. I’ve checked the “Discussion” option for this page and it definitely is set to not allow comments.

    2. Do not show the Featured Images larger than actual size.

    3. Each Post has a custom Taxonomy (Squadron, Rank, Number) that the User can filter by when viewing Post Lists. Am I able to show the Value of each Post’s Squadron, Rank & Number somewhere?

    Cheers,
    Darren.

    #1044659
    Lely
    Moderator

    Hi Darren,

    1.) You may also disable this on Settings > Discussion. If the issue still exists, please check if you have caching plugin and try to delete/purge cache. We might be seeing cached content.

    2.) Please add this CSS on Appearance > Customize > Custom > Edit Global CSS:

    .single-post .entry-thumb img {
        min-width: initial;
    }
    .single-post .entry-featured {
        display: inline-block;
    }
    .single-post .entry-thumb {
        display: inline-block;
    }

    3.) Would you mind providing us with login credentials so we can take a closer look on your settings? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password

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

    #1044852
    DesignMunky
    Participant
    This reply has been marked as private.
    #1044919
    Lely
    Moderator

    Hi There,

    Thank you for the credentials.
    3.) This is possible with some custom development. Please check this thread for some guide:https://community.theme.co/forums/topic/adding-a-custom-taxonomy/
    On the sample thread, they’re referring to the code from here: x/framework/functions/integrity.php, since you’re using renew you should be looking here:x/framework/functions/renew.php but same process apply.

    Hope this helps.

    #1047658
    DesignMunky
    Participant

    Hi again,

    With relation to the CSS for setting the featured image size in single posts, can you please also give me the CSS code for doing the same for Blog Search Lists? Currently when you search via text, the featured images come out too large, like the Single Posts used to…

    Cheers,
    Darren.

    #1048025
    Rad
    Moderator

    Hi there,

    Sure, you may update your CSS to this.

    .single-post .entry-thumb img, .search-results .entry-thumb img {
        min-width: initial;
    }
    .single-post .entry-featured, .search-results .entry-featured  {
        display: inline-block;
    }
    .single-post .entry-thumb, .search-results .single-post .entry-thumb {
        display: inline-block;
    }

    Cheers!

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