New answers tagged magento-1.6
0
this compress and combines all css and js . Have you taken any backup? Have u installed it from mage connect ?
1
Check your database to see the actual name of the column you're referring to. As Mysql says in its error: the column you're addressing doesn't exist.
0
<reference name="content">
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
<block type="core/text_list" name="left_custompage" ...
0
Put your newreference block out side of your content block.
<?php echo $this->getChildHtml('newreference') ?> call this block in one of your layout file something like below its for 2columns-right layout
<div class="main-container col2-right-layout">
<div class="main">
<?php echo ...
1
Replace:
<reference name="newreference">
<block type="core/template" name="newreferenceblock" template="newreference.phtml" />
</reference>
with:
<block type="core/template" name="newreferenceblock" template="newreference.phtml" />
and then call your block inside template using 'newreferenceblock' as a name of the block:
...
0
You can refer to the URL below:
magento customize tinymce
You can add features in tinymce or remove features in tinymce.
Top 50 recent answers are included


