Hi,
I am using THE GRID plugin to make some grids on the site.
However when I go to some category page, it goes back to the old layout and does not look good as I have made lots of changes.
The plugin says it can wrap all the categories in this layout for the plugin…
https://theme-one.com/docs/the-grid/#grid_as_template
They say…
To replace the index/search/archive templates of your Theme, you need to edit the index/search/archive.php file located at the root folder of your theme:
In these files, you will find the main loop:
COPY
if ( have_posts() ):
while ( have_posts() ): the_post();
// some code from your theme
// …
// …
endwhile;
endif;
You just need to replace all the previous php code by this line of code:
COPY
The_Grid(‘My Grid Name’, true); // where true is for template mode
I would like to use this for all blog posts in claue…
How can I go about this? I am unable to identify where to find this loop in claue.
Many thanks.