Hallo ich probier jetzt schon eine ganze Weile hin und her und komme einfach zu keiner Lösung... Ich würde gern das Formuar für die Kommentare in einen LightBoxfenster öffnen jetzt habe angefangen die ce_comments.tpl zu bearbeiten, und komme an der Stelle nicht weiter.

PHP-Code:

<div class="<?php echo $this->class?> block"<?php echo $this->cssID?><?php if ($this->style): ?> style="<?php echo $this->style?>"<?php endif; ?>>
<?php if ($this->headline): ?>

<<?php echo $this->hl?>><?php echo $this->headline?></<?php echo $this->hl?>>
<?php endif; ?>
<?php 
foreach ($this->comments as $comment) echo $comment?>
<?php 
echo $this->pagination?>
<?php 
if (!$this->requireLogin): ?>

<!-- indexer::stop -->

<a rel="lightbox[inline auto]" href="#<?php echo $this->formId?>">Link zum Form</a><br/>

<div class="form">
<?php if ($this->confirm): ?>

<p class="confirm"><?php echo $this->confirm?></p>
<?php else: ?>

<form action="<?php echo $this->action?>" id="<?php echo $this->formId?>" method="post">
<div class="formbody">
<input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formId?>" /><?php echo $this->messages?> 
<div class="widget">
  <?php echo $this->fields['name']->generateWithError(); ?> <?php echo $this->fields['name']->generateLabel(); ?> 
</div>
<div class="widget">
  <?php echo $this->fields['email']->generateWithError(); ?> <?php echo $this->fields['email']->generateLabel(); ?> 
</div>
<div class="widget">
  <?php echo $this->fields['website']->generateWithError(); ?> <?php echo $this->fields['website']->generateLabel(); ?> 
</div>
<?php if (isset($this->fields['captcha'])): ?>
<div class="widget">
  <?php echo $this->fields['captcha']->generateWithError(); ?> <label for="ctrl_captcha"><?php echo $this->fields['captcha']->generateQuestion(); ?><span class="mandatory">*</span></label>
</div>
<?php endif; ?>
<div class="widget">
  <?php echo $this->fields['comment']->generateWithError(); ?> <label for="ctrl_<?php echo $this->fields['comment']->id?>" class="invisible"><?php echo $this->fields['comment']->label?></label>
</div>
<div class="submit_container">
  <input type="submit" class="submit" value="<?php echo $this->submit?>" />
</div>
</div>
</form>
<?php if ($this->hasError): ?>

<script type="text/javascript">
<!--//--><![CDATA[//><!--
window.scrollTo(null, ($('<?php echo $this->formId?>').getElement('p.error').getPosition().y - 20));
//--><!]]>
</script>
<?php endif; ?>
<?php 
endif; ?>

</div>


<!-- indexer::continue -->
<?php endif; ?>

</div>
Wie muss ich den Link anpassen das auch wirklich nur das Formular angezeigt wird? In der jetztigen Version lande ich immer auf der Startseite. Ist quasi mit erster Versuch in einem Template was zu ändern da ich nicht wirklich viel Erfahrung im Programieren habe, aber Übung macht ja den Meister

Danke schonmal für die Hilfe, ich hoffe das ich trotz SuFu nicht die Lösung im Forum übersehen habe