Hi,
Just purchased this awesome plugin today, it appears to do everything i require but for some reason i cannot get it to post the information i require?
My form is fully made up of custom fields and i wish for the information from the forms to be put into posts on a page.
I am not a wordpress newbie and i have a fairly good understanding about custom fields, but for some reason i cannot get this to work.
I am using another plugin called composite post which allows me to set post templates with ease. I am not entirely sure whether it's not showing because i am using another plugin, but i've never had issues before.
Here's my code from the template file:
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php $job = get_post_meta($post->ID, 'job-title', true); ?>
<?php $business = get_post_meta($post->ID, 'company', true); ?>
<?php $post = get_post_meta($post->ID, 'address', true); ?>
<?php $date = get_post_meta($post->ID, 'closing-date', true); ?>
<?php $logo = get_post_meta($post->ID, 'company-logo', true); ?>
<table width="960" height="350" border="0">
<tr>
<td height="190" colspan="2">
<p><?php echo $job; ?></p>
<p><?php echo $business; ?></p>
<p><?php echo $post; ?></p>
</td>
<td width="116" valign="top"><img src="<?php echo $logo; ?>" alt="company logo" width="150" height="150" /></td>
</tr>
<tr>
<td width="302" height="57"><?php echo $date; ?></td>
<td colspan="2">read more</td>
</tr>
</table>
<p class="postmetadata"><?php edit_post_link('Edit', '', ''); ?></p>
</div>
if someone could have a look and let me know where i might be going wrong? Or an example how i can just get the info from form to post. would be helpful then i can work from there.
Thanks