Change ft image and title order only on blog archive pages

Hi

in pro, I can change the order of the title and ft image so the title comes first, but i only want this in the blog overview not on the single prog article page

using integrity

What to do to make this work?

Thanks

Hey @quinex,

Regretfully, reordering elements in archives is not yet a feature of our theme therefore this would require custom development which is outside the scope of our theme support.

I’ll just point you out to the right direction. First, you need to learn how to modify or override our theme. Here’s the documentation: https://theme.co/docs/best-practices

You’d then need to override the _content-post-header.php of stack you’re using so if you’re using the Renew stack, you can find the file in wp-content/themes/pro/framework/views/renew.

Hope that helps and thank you for understanding.

Hey @christian,

Yeah I’m familiar with this and as mentioned that was already what i did, it is just that this changed the position of the image for both archive and single post, that was what I was interested in to be able to keep image above title in single post but below title on archive.

Probably need an “if” statement but php is not my strength :wink:

Hello @quinex,

You can make sure of the conditionals is_archive() and is_single() to check if you’re on an archive or the single post page:


Hope this helps you get started.

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