Hi,
gibt es eine Möglichkeit die Ausgabe der Formularfelder zu definieren?
Ich will zum Beispiel das Webseiten Feld nicht haben.
Die Formular Felder werden ja hier im Template per parse erstellt und eingefügt.
Kann ich dort mit angegeben was er parsen soll bzw. nicht?

Danke

PHP-Code:
<?php use Netzmacht\Bootstrap\Core\Bootstrap?>
<?php 
if (!$this->requireLogin): ?>

  <!-- indexer::stop -->
  <div class="form">

    <?php if ($this->confirm): ?>
      <p class="confirm alert alert-success"><?php echo $this->confirm?></p>
    <?php elseif ($this->allowComments): ?>
      <form<?php if ($this->action): ?> action="<?php echo $this->action?>"<?php endif; ?> id="<?php echo $this->formId?>" method="post">
        <div class="formbody <?php if(!Bootstrap::getConfigVar('form.default-horizontal')): ?>form-horizontal<?php endif; ?>">
          <input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formId?>">
          <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">

          <?php
            
foreach($this->fields as $name => $widget ) {
                echo 
$widget->parse();
            }
          
?>

          <div class="form-group">
            <?php if(!Bootstrap::getConfigVar('form.default-horizontal')): ?>
            <div class="<?php echo Bootstrap::getConfigVar('form.horizontal.offset') . ' ' Bootstrap::getConfigVar('form.horizontal.control'); ?>">
            <?php endif; ?>
            <input type="submit" class="submit btn btn-primary" value="<?php echo $this->submit?>">
            <?php if(!Bootstrap::getConfigVar('form.default-horizontal')): ?>
            </div>
            <?php endif; ?>
          </div>

        </div>
      </form>
    <?php endif; ?>

  </div>
  <!-- indexer::continue -->

<?php endif; ?>