This was a custom theme. I’m not sure why there are hidden elements only when I copy the link with a filter in place. There aren’t any plugins for the projects page.
Here is the code below the filters:
?>
<div class=”media-box <?php echo $project_region; ?> <?php echo $project_types; ?> <?php echo $project_services; ?> <?php echo $project_cats; ?> “>
<div class=”media-box-image”>
<div data-width=”268″ data-height=”268″ data-thumbnail=”<?php echo the_post_thumbnail_url( $post->ID, ‘project-landing-thumb’ ); ?>”></div>
</div>
<div class=”media-box-content”>
<div class=”media-box-title”>“><?php the_title(); ?></div>
<?php if(get_field(‘project_location’)) { ?>
<div class=”media-box-date”>
<?php the_field(‘project_location’); ?>
</div>
<?php } ?>
<?php if(get_field(‘project_owner’)) { ?>
<div class=”media-box-date”>
<?php the_field(‘project_owner’); ?>
</div>
<?php } ?>
</div>
</div>
<?php
$countTwo++; }
wp_reset_postdata();
} else {
// no posts found
}
?>