Blog Page and Single Post Help

Hello,

I have a few things related to the blog page that I need some help with.

  1. I can’t seem to get my single posts to have a sidebar. I have set the blog page template to “content left, sidebar right” and then in Theme Options - Blog I set it to Global but no luck. I’ve cycled through the different stacks and none of them show a sidebar. What am I missing?

  2. On the single page, is there a way to completely remove the featured image that shows on the single posts? I just want the featured image to show on the main blog page.

  3. You guys helped me with some custom css to get the page content to go full width behind the header, but is there a way to excluded single posts and the main blog page from this so it doesn’t go behind the header?

  4. How do add a title to my main Blog page?

  5. How do I disable/edit the blog pagination and just have a continuous scroll, or show more than the default?

Thanks!

Hello @frankburder,

Thanks for asking. :slight_smile:

  1. Under Pro > Theme Options > Layout and Design > Content Layout > Select Content Left, Sidebar Right. It’s currently set to Fullwidth.
  2. Please add following CSS under Pro > Theme Options > CSS to remove featured image from single posts:
.single-post .entry-featured {
    display: none;
}
  1. Please use following CSS under Pro > Theme Options > CSS:
.single-post .x-masthead, .blog .x-masthead {
    position: relative;
}
  1. You can add following JS code in Pro > Theme Options > Js
jQuery(".blog .offset.cf").prepend("<h1 class='h-landmark' style='text-align:center;'><span>Blog</span></h1>");
  1. Please add following CSS under Pro > Theme Options > CSS to remove pagination:
.x-pagination {
    display: none;
}

Regretfully, infinite scroll or load on scroll isn’t a feature in X. It could be possible with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer to assist you with this.

I am sharing few plugins that you can take a look at implement infinite scroll:


I am also sharing the Google Search result page that you can take a look for more resources. Please Click Here .

Please note that the plugins I have shared is not a official Themeco advice. It’s just a personal input that I have shared with you to help you get started. 3rd party plugins may cause some issues and we won’t be able to provide support in that scenario.

Thanks.

1 Like

Thank you very much!

Glad we were able to help :slight_smile:

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.