Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Add below code in your catalog/product/view.phtml page.That will bring the custom options to your product page.</p> <pre><code> if ($_product-&gt;isSaleable() &amp;&amp; $this-&gt;hasOptions()): echo $this-&gt;getChildChildHtml('container1', '', true, true) endif; if ($_product-&gt;isSaleable() &amp;&amp; $this-&gt;hasOptions()): echo $this-&gt;getChildChildHtml('container2', '', true, true) endif; </code></pre> <h2>Shopping cart</h2> <p>check you checkout.xml for addItemRender methods are added or not in checkout.cart block. </p> <pre><code> &lt;checkout_cart_index translate="label"&gt; &lt;reference name="content"&gt; &lt;block type="checkout/cart" name="checkout.cart"&gt; .... &lt;action method="addItemRender"&gt;&lt;type&gt;simple&lt;/type&gt;&lt;block&gt;checkout/cart_item_renderer&lt;/block&gt;&lt;template&gt;checkout/cart/item/default.phtml&lt;/template&gt;&lt;/action&gt; &lt;action method="addItemRender"&gt;&lt;type&gt;grouped&lt;/type&gt;&lt;block&gt;checkout/cart_item_renderer_grouped&lt;/block&gt;&lt;template&gt;checkout/cart/item/default.phtml&lt;/template&gt;&lt;/action&gt; &lt;action method="addItemRender"&gt;&lt;type&gt;configurable&lt;/type&gt;&lt;block&gt;checkout/cart_item_renderer_configurable&lt;/block&gt;&lt;template&gt;checkout/cart/item/default.phtml&lt;/template&gt;&lt;/action&gt; ... &lt;/block&gt; &lt;/reference&gt; </code></pre> <p> and check template files is it called correctly or not.</p> <p>Check with magento default is your blocks are called correctly in cart.phtml and other pages</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload