Private holes can only be punched at the block level. If a piece of private information does not have its own block, a hole cannot be punched.
Add a block for the private information in order to inject the ESI process.
For example, a user review input form is integrated into a product page by a customized theme. The form can be varied according to each product, and the default nickname is varied by each logged in user. You cannot simply configure the whole page/block to be private. You will need to create a new private block inside of the review form block.
As of version 1.0.2, sample code has been added to demonstrate how to handle private information inside of a public block. There are a few steps to be followed:
customized_theme/layout/catalog.xml
<block as="review_form" name="product.review.form" template="review/form.phtml" type="review/form"/>
new:
<block as="review_form" name="product.review.form" template="review/form.phtml" type="review/form"> <block type="litemage/inject_nickname" name="nickname" as="nickname"/> </block>
Note: The sample code is shipped by default under Litemage/Block/Inject/Nickname.php
.
<input type="text" name="nickname" id="nickname_field" class="input-text required-entry" value="<?php echo $this->htmlEscape($data->getNickname()) ?>" required/>
new:
<input type="text" name="nickname" id="nickname_field" class="input-text required-entry" value="<?php echo $this->getChildHtml('nickname') ?>" required/>
$v
after the block name or block type in LiteMage's config.xml
to avoid extra info/debug info from being output to browser. As always, if you have any customizations, please make these changes in your local directory or create a backup as they will otherwise be overridden by future LiteMage updates.