cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 1.9 products not shoing on home page

Magento 1.9 products not shoing on home page

Hello,

 

I just finished this website www.caviarofswitzerlandshop.com with Magento ver. 1.9.2.1

I have used this template: https://web-experiment.info/bluescale-magento-template

 

As you can see, there is a big gap in the home page and that is where the products in my hidden category should appear. The code in my home page should be:

 

<div class="customer_options"><a href="#" title=""><img src="{{media url="template/options.gif"}}" alt="Caviar of Switzerland Free Shipping Great Offers" /></a></div>
<h2 class="ul_title"></h2>
<div>{{block type="catalog/product_list" template="catalog/product/home_full.phtml" category_id="9" column_count="7"}}</div>

 

but instead it is:

 

<div class="customer_options"><a href="#" title=""><img src="http://www.caviarofswitzerlandshop.com/media/template/options.gif" alt="Caviar of Switzerland Free Shipping Great Offers"/></a></div>
<h2 class="ul_title"></h2>
<div></div></div> </div>

 

You see, the last div comes empty....when I replace the code inside the div with something simple then it appeas.

 

I tried "To display all products on home page, root category should be set as Is Anchor = yes in display setting in manage categories". Also this has nothing to do with product visibility or stock control, I already checked these. Also, flashed every cached there is available. Also tried "Login into magento admin Now click on any product which you have created Now Set Product as New from Date and Set Product as New to Date"

 

Any suggestions?

 

SOLUTION: after the addition of SUPEE-6788 certain static blocks don't appear because they are blocked. Here is the solution https://magentary.com/kb/cms-pages-transactional-emails-broken-after-supee-6788-patch/ just add to CMS > Pages or CMS > Static Blocks the block to allow.

 

Thanks

 

 

1 REPLY 1

Re: Magento 1.9 products not shoing on home page

Hello,

 

You should try this code 

{{block type="catalog/product_list" name="product_home_list" template="catalog/product/home_full.phtml" category_id="9"}}

 

I removed column_count="7" and added name="product_home_list"

Problem solved? Click Accept as Solution!