I'm using ClassiPress version: 4.2.3
Apache server
I'm trying to place a listing's heading and price onto the page for a single listing in the main content area. (By default, through the use of widgets, this page shows the photo gallery, then the description, custom fields, etc.)
To do this, I'm using the "Insert PHP Code Snippet" plugin.
For the heading, I place
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
into the plugin. See screen shot #1.
However, I can't find the correct code to place into the plugin in order to generate a snippet that will show the price. I have tried
<?php cp_get_price( '<h1 class="entry-title">', '</h1>' ); ?>
and many others. What I try either generates an error on the page or simply doesn't display.