I have already created those variables for Height and Weight needed, but i'm currently stuck with making the
My Bodyspace page.
I have followed this
guide on how to setup extra profile tabs, but i have no idea how to register my custom height and weight profile fields in the plugin so that they display on the template.
my template currently has:
HTML Code:
<div class="body_measurements">
<vb:if condition="$post['field8']">
<h2 style="display: inline;">H: {vb:raw post.field8}cm | </h2>
<vb:else />
<h2 style="display: inline;">H: -- | </h2>
</vb:if>
<vb:if condition="$post['field7']">
<h2 style="display: inline;">W: {vb:raw post.field7} Lbs</h2>
<vb:else />
<h2 style="display: inline;">W: -- </h2>
</vb:if>
</div>