Site logo

Archived topic

How to make Downloads Archives layout same as Post Archives

9 replies · Started by Tommy on February 21, 2023

Viewing posts 1–10 of 10

Is it possible to make the downloads archive page the same layout as the post archives? I know how to change column settings on post archives, but I don't see an option for downloads.

Is that a CPT?

What is a CPT? Custom Post? It's a download. I use Easy Digital Downloads (like WooCommerce for digital downloads) with this site.

That hasn't done anything. As i say, they're not posts, they're downloads and use separate categories...

Did you replace CPT_SLUG in the example code?

If that doesn't work, then you will need to confirm with Easy Digital Downloads on whether Downloads is a CPT or not.

I tried this in Additional CSS is that what you mean?

add_filter( 'generate_blog_get_column_count','tu_search_column_count' );
function tu_search_column_count( $count ) {
if ( is_search() ) {
return 33;
}

return $count;
}

This archived topic is closed to new replies.