cancel
Showing results for 
Search instead for 
Did you mean: 

view as 'List' showing products incorrectly

SOLVED

view as 'List' showing products incorrectly

Hi!

 

I hope this message is in the correct thread.

 

I have an issue with products showing in 'List' view on my website: http://mumstuff.magentostaging.com/mum-to-be/gifts.html

The 'price/ add to cart' section seems to have moved down, and out of position. ( Pic showing the error http://imgur.com/bro6aMk )

 

This error appears on the Ultimo theme and a previous Monster-template theme i had on there. Which probably means this isn't an issue with the Ultimo theme which is current in use?

 

There may be an option within magento which is causing this issue on the Admin panel System > Configurations tab. The site is running Magento ver. 1.9.1.0

 

As a side note; i have applied the Ultimo theme on a previous magento site (Magento ver. 1.7.0.2). This is how the website without the error should look like: http://classicpartsltd.com/goggles.html?mode=list

 

Any advice will be really great right now, thank you! : )

1 ACCEPTED SOLUTION

Accepted Solutions

Re: view as 'List' showing products incorrectly

RESOLVED~!

 

Turned out to be an easy fix like i expected.. i checked the short description of the product and a html tag wasn't closed off..

 

This is what caused the error:

<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul
</div>

 

Fixed:

<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul>
</div>

 

Disappointed i didn't receive any help on this sooner, but nevermind! Helps me learn i suppose. : )

View solution in original post

1 REPLY 1

Re: view as 'List' showing products incorrectly

RESOLVED~!

 

Turned out to be an easy fix like i expected.. i checked the short description of the product and a html tag wasn't closed off..

 

This is what caused the error:

<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul
</div>

 

Fixed:

<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul>
</div>

 

Disappointed i didn't receive any help on this sooner, but nevermind! Helps me learn i suppose. : )