June 8, 2023
JMS Maintenance
- finish onetrust tasks
FRT Airtable
- add new table, update documentation
- actually, this looks the same, getting more info
Team Meeting
GRNCRFT Check
The setting for posts per page was set as 6, with the intention you would see 6 blog posts per page. But as far as WordPress is concerned, products are just posts as well. So I had to add a bit of code that would ignore this when you’re looking at a product archive.
add_action('pre_get_posts', function($query){
if ( is_archive('product') ) {
// show all despite the number set under "blog pages show at most"
$query->set( 'posts_per_page', -1 );
}
});
- update plugins and WP version
PSP ROI Calc
- error?
- trigger needed to be updated in GTM
Training
- review some old tabs about different code things
Password solution research
Candidate thoughts
MN Connections
- tagging check
- make the header re-usable
- apply it to everything.....