wait, so you’re saying the php code won’t work unless i use pro and the shortcode won’t work unless i use pro. what actually works in the free version? the plugin description says it works with custom post types and the admin interface gives you both options as though they are available to use.
can you be a little more specific about where you mean by DOM selector? i added it in various places in that page’s php file, but had no luck. here is the code for that:
<?php get_header(); ?>
<!-- Row for main content area -->
<div class="small-12 large-8 columns" role="main">
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<header>
<h2 class="entry-title"><?php the_title(); ?></h2>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; // End the loop ?>
<!-- Start: Crystal thumbnails -->
<?php
$query = new WP_Query('post_type=crystal&orderby=title&order=asc&posts_per_page=-1');
?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<h3 class="crystal-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="More about <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="clearboth">
<?php echo(types_render_field("crystal-picture", array("title"=>"More information","width"=>"150","height"=>"150","proportional"=>"false","class"=>"crystal-image alignleft"))); ?>
<?php the_content();?>
</div>
<hr />
<?php endwhile; ?>
<!-- End: Crystal thumbnails -->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>