Blogroll Not Showing "Cropped Featured Images" in Tag Archive Pages

Hey all,

I can’t figure this out for the life of me. I can’t get images to produce with a standard blogroll on the archives for x when using the ethos stack. It works with Masonry layout but not with standard and I just don’t get it.

https://www.lazybets.com/tag/reddit-sportsbook/

Please help! :smiley:

This is what I’ve identified with my host:

1 PHP Fatal error: Wrong parameters for Exception([string $exception [, long $code [, Exception $previous = NULL]]]) in /nas/content/live/lazybets/wp-content/plugins/cornerstone/includes/classes/models/class-model-content-content.php on line 91
1 PHP Fatal error: Cannot use object of type WP_Error as array in /nas/content/live/lazybets/wp-content/plugins/tco-facebook-comments/functions/output.php on line 89

Are these contributing? Please help me fix this stuff.

Hi @btmaffiliate,

Thanks for writing in.

What’s the date of this errors? They are fatal errors and your site should be down if that’s really the case. But it’s up and running so it must be different, and the errors could be pointing on a different date.

But the reason why it’s not working is because of these custom CSS

.page .entry-featured {
    display: none !important;
}
.post .entry-featured {
    display: none !important;
}

Please remove them.

Thanks!

I understand what you’re saying. I’d like the snippets to appear in my tag archives but not in the posts or pages directly themselves. I would like to keep them hidden there. Any way to make that happen?

Hi There,

Please try with this custom CSS instead:

.single-post .entry-featured,
.page-template-default .entry-featured {
    display: none !important;
}

Let us know how it goes!

1 Like

Worked perfectly! Is there a way to move my post and page content up? to be closer to the head of the page?

Hi There @btmaffiliate

To move page content up, try adding the following custom CSS rule as well into your Theme Options > Global CSS area.

.tag .x-breadcrumb-wrap {
    max-height: 40px;
    width: 500px;
}

I have tested the other link on mobile, and I was able to scroll through the page. Could you please try clearing your browser cache and test it again?

Thanks!

1 Like

That worked for the spacing on tags. How about pages? And as for the scroll, I can scroll downwards but not left to right on my iphone X.

Hi @btmaffiliate

The same code will work for pages if you just modified tags to pages like this:

.page .x-breadcrumb-wrap {
    max-height: 40px;
    width: 500px;
}

To allow scrolling in this table on mobile devices, please add this CSS code to (Theme Options > CSS):

.table-1 {
    overflow: scroll;
}

Thanks.

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