My archive page is pretty much destroyed, and I fail to figure out where it is generated from in the first place.
Here’s the link: https://breakchill.com/2019/11/
The next/random/prev buttons are easily removed, but the problem is how broken the archive page is with me having no idea where it is even generated. Extensive searching around this forum, Google and more haven’t been helpful in any way.
Thank you for reaching out to us. This could only be the cache issue, as I see the content of your site is being served by Endurance cache. Please clear all caches first and then turn off your endurance cache via Admin > Settings > General. Caching plugins are best to turn on only when you’ve finished building the site.
I was probably not clear enough, but thank you for your reply anyway.
My goal is to customise the archive page that comes with paginations into a custom page to display all the recent posts categorised by the selected month.
To be more precise, this is the page I’m talking about, that I wish to customise it to be appearing as one page: https://breakchill.com/2019/11/
I had already done a custom archive page, and I linked it to the following page:
So, what I exactly want is to direct anyone selected the month of the year TO a custom page displaying the archived post inline and in one page instead of the current default pagination.
My main question is, where I could find the page that is responsible for customising this archive page: https://breakchill.com/2019/11/
Thank you for reading, I hope I can get supported asap since it’s urgent
All the archive pages is using the index.php file. WordPress dynamically generate the post items in the archive pages. Your archive page is messed up because you added this custom css to hide the post titles;
.entry-title {
display: none;
}
And then somewhere in your child theme, you added this custom html;
I can’t make the forum format the code right. But here it is, this is the code I coded for adding the navigation buttons on the theme and they’re placed on content.php file: https://paste.ofcode.org/PG9XxbqUk6gtkV9nUwMeA6
And if archives are using index.php, can’t we make an archive.php that will overwrite it? I read something about that from an old blog post.