Showiing Custom Fields in a different position
I was wondering is there anyway one can position certain custom fields separately instead of all the custom fields showing on the right-side of the images.
I know this is possible since the price field is shown separately.
For example say I want to show certain fields like Car Type, Car Model and Color separately under the description. How can we do that ?
I know the way to replicate these fields but whats happening is it is now showing at two places
1. On the right-side of the images where all the custom fields are placed.
2. Under the description where I added the fields with the code as below.
I only want it shown once where I intend to have it rather than twice. Similar to the way the cp_price field shows on the top left only once and not alongwith all the other custom fields.
I know it has something to do with this or something similar. Because if I remove the price here it starts showing at 2 places instead of just in the price field ( but also in the custom fields)
echo '<li id="'. $result->field_name .'"><span>' . $result->field_label . ':</span> ' . str_replace(',', ', ', appthemes_make_clickable($post_meta_val)) .'</li>'; // make_clickable is a
WP function that auto hyperlinks urls}
elseif($result->field_name != 'cp_price' && $result->field_type != "text area")
Any help on this is deeply appreciated.