adding glm hide class to the div around the apply filters for the custom field form
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 24 Oct 2017 18:27:35 +0000 (14:27 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 24 Oct 2017 18:27:35 +0000 (14:27 -0400)
the custom fields were showing up in the main members profile table instead of being hidden
initially

views/admin/member/memberInfo.html

index 296abcb..528891e 100644 (file)
       {if $memberInfoID && $memberInfo}
         {$prefix = $slug|cat:'_'}
         {$uid = $prefix|cat:$memberInfoID}
-        <table id="glm-table-custom-fields" class="glm-hidden glm-admin-table glm-table">
+        <div id="glm-table-custom-fields" class="glm-hidden glm-admin-table glm-table glm-member-info-table">
             {apply_filters('glm-members-custom-fields-form', '', $slug,$memberInfoID)}
             {apply_filters('glm-members-custom-fields-form', '', $uid,$memberInfoID)}
-        </table>
+        </div>
       {else}
         {apply_filters('glm-members-custom-fields-form', '', '')}
       {/if}