Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

smarty.block.parent spezifizieren

$
0
0
Hallo :D

Ich will mit einem Template bestimmte Elemente ausblenden. Mein Code ist folgender:

PHP Code:

[{if $basketitem->getdBundledAmount() > && ($basketitem->isBundle() || $basketitem->isDiscountArticle()) }]
    [{if 
$editable }]
        <
td>&nbsp;</td>
    [{/if}]
[{else}]
    [{
$smarty.block.parent}]
[{/if}] 

Im Prinzip suchst sich der Code Artikel welche "isDiscountArticle" sind und blendet die "checkbox" mit "&nbsp;" aus. Das funktioniert auch gut, da die Box weg ist aber der Container mit den "styles" erhalten bleibt.

Ich will nun ein <p> Element in einem <td> ebenfalls ausblenden. Die Struktur kann man sich wie folgt vorstellen:

HTML Code:

<td>&nbsp;</td> // ist schon ausgeblendet
<td></td>
<td></td>
<td><p>&nbsp;</p></td> // hier soll der Inhalt von <p> ausgeblendet werden bzw <p> kann auch komplett weg

Könnt ihr mir Lösungsvorschläge geben? Und ist der Ansatz überhaupt gut?^^

Viewing all articles
Browse latest Browse all 6951

Trending Articles