• Resolved gillinghamjamie

    (@gillinghamjamie)


    Hi there,

    I’ve added the Recencio plugin to my site, which is a plugin that adds post pages specific to book reviews. However, the review pages that it creates do not adopt the same layout as my normal “post” pages.

    I’ve been told by the plugin creator that “The issue is that this theme only recognizes “posts”, “pages” and “products”, however my plugin adds “reviews” as a new post type. So because it does not recognize “reviews” it falls back to a default “no-layout” styling of-sorts which is why reviews cant get that no-sidebar-wide layout that your posts have.”

    They recommended that I reach out to you about next steps that would allow me to edit the layout that my “review” posts adopt.

    Thanks,

    Jamie

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hi Jamie,

    Thanks for using Mission News!

    I see what you mean, and custom post type support could be better. As you can see, Mission News simply defaults to the regular two-column layout for all custom post types right now.

    Here’s a CSS snippet you can use for your site to make the reviews all the same layout as your posts:

    @media all and (min-width: 50em) {
    
      .single-rcno_review .loop-container {
        width: 156%;
        margin-left: -56%;
      }
    }
    .sidebar-left {
      display: none;
    }

    Please copy & paste the code above into the “Additional CSS” section in the Customizer (Appearance > Customize), and it will take effect right away.

    Thread Starter gillinghamjamie

    (@gillinghamjamie)

    Thanks @bensibley! That seemed to do the trick with a little fiddling.

    The code did leave behind a grey divided (border?) that I can’t seem to get ride of at all.

    You can see it on this page for instance: https://box5445.temp.domains/~cardiffr/review/the-whole-world-is-the-woods-daniel-handlers-bottle-grove/

    Any ideas?

    Theme Author Ben Sibley

    (@bensibley)

    Got it. Please try this updated CSS instead which should also remove that line left over from the sidebar divider:

    @media all and (min-width: 50em) {
    
      .single-rcno_review .loop-container {
        width: 156%;
        margin-left: -56%;
      }
      .single-rcno_review .sidebar-left {
        display: none;
      }
      .single-rcno_review .content-container:before {
        display: none;
      }
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page layout for Recencio review page’ is closed to new replies.