VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: CMYKreative on October 16, 2012, 09:16:05 AM

Title: PHP Help - Consecutive Numbering
Post by: CMYKreative on October 16, 2012, 09:16:05 AM
I'm trying to hide some specific <tr> rows on the registration form that are not needed, but there is no way to 'target' them as it uses the same piece of coding to create all the rows.

What we have at the moment is:

      echo '   <table  class="adminForm user-details">' . "\n";
      $_table = true;
       }
       echo '      <tr>' . "\n";
       echo '         <td class="key" title="'.$_field['description'].'" >' . "\n";
       echo '            <label class="' . $_field['name'] . '" for="' . $_field['name'] . '_field">' . "\n";
       echo '               ' . $_field['title'] . ($_field['required'] ? ' *' : '') . "\n";

Where the td class is simply called "key" and all td are then called the same. We are trying to add in some consecutive lettering functionality so that each row then gets labelled with a consecutive number.

We've tried adding this into the top of the page:

<?php
// array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i');
foreach (range('a', 'z') as $letter)
?>
Which does generate consecutive letters, and then this change to the code:

       echo '         <td class="key td-id-'.$letter.'" title="'.$_field['description'].'" >' . "\n";

Any thoughts on how to get this to work?

Thanks in advance!
Title: Re: PHP Help - Consecutive Numbering
Post by: jenkinhill on October 16, 2012, 13:18:44 PM
You can use the code snippet here to hide unrequired fields based on fieldname - http://forum.virtuemart.net/index.php?topic=107226.msg358403#msg358403
Title: Re: PHP Help - Consecutive Numbering
Post by: CMYKreative on October 17, 2012, 03:21:12 AM
Thanks jenkinhill, but I can't do that as the only thing that defines them is the 'key' class . . . much easier to simply add an additional ID to the rows and hide as needed I would have thought.