How do I add it for the PRODUCTS block area ?
[quote name=‘nathand’]How do I add it for the PRODUCTS block area ?[/QUOTE]
Can you expand a little. What version and so on?
and
What is showing?
[url]http://www.derbysmack.com/protec-knee-pads.html[/url]
When I goto the BLOCKS page in the admin section Im missisng the “Central Content” under the “Products” tab.
It was just working too…
I think it’s 2.1
WORKING SITE (bellow)
NON WORKING SITE, notice it’s missing the CENTRAL CONTENT(bellow)
Try…
Admin>Design>All Pages>Blocks>Central…active
or
Admin>Design>Products>Blocks>Central…active
Not sure why?
Try clearing your cache
you cant “activate” or “Disable” Central Content
[quote name=‘nathand’]you cant “activate” or “Disable” Central Content[/QUOTE]
Yeah noticed that, you can on 2.1.1
Im not sure what happend, but I did find this solution.
[QUOTE]Check the directory “skins/SKIN_NAME/customer/blocks/locations/products” for the file “central.tpl”. That file should contain the following (or similar based on the wrapper you use):[/QUOTE]
```php
Code:
{block content=true wrapper=“blocks/wrappers/mainbox_general.tpl”}
```
So I looked at mine and found this.
```php
{block id=40 template=“blocks/categories_multicolumns.tpl” wrapper=“blocks/wrappers/mainbox_simple.tpl”}
{block id=12 template=“addons/tags/blocks/user_tag_cloud.tpl” wrapper=“blocks/wrappers/sidebox_general.tpl”}
{block id=9 template=“addons/tags/blocks/tag_cloud.tpl” wrapper=“blocks/wrappers/sidebox_general.tpl”}
```
Then changed it to this
```php
{block id=40 template=“blocks/categories_multicolumns.tpl” wrapper=“blocks/wrappers/mainbox_simple.tpl”}
{block content=true wrapper=“blocks/wrappers/mainbox_general.tpl”}
{block id=12 template=“addons/tags/blocks/user_tag_cloud.tpl” wrapper=“blocks/wrappers/sidebox_general.tpl”}
{block id=9 template=“addons/tags/blocks/tag_cloud.tpl” wrapper=“blocks/wrappers/sidebox_general.tpl”}
```
```php
```
Thank you Berry for helping me .
[quote name=‘nathand’]Thank you Berry for helping me .[/QUOTE]
That was strange, that’s what I would expect if you had disabled the central colmn. Weird!!!
Glad you sorted.