Hints on Specials Page layout issue?

I’m having a few issues with making a sales page have a layout that matches the rest of the site.

There didn’t seem to be a tutorial for this, so I’m wondering how to replicate the demo site version?

9 answers

Profile photo of Ziven Staff 100280.00 $tone September 3, 2014
Public

You can go to admin backup and download it.
follow this : Admin- > Systems -- > Tools -> Backups click on "System Backup" when this task done you can download and updated to your website.

#3
Profile photo of SM Reeve 0.00 $tone September 4, 2014
Public

Thanks Ziven, that’s really cool.

However I’m struggling a bit with building it on your demo site also.

When I click on the ‘SALE’ link, the page looks as I would like my own to look, but I am unsure how to get the products displayed. to be products that have been put ‘on sale’
I’m wanting it so that when I add prices to the ‘sale’ fields on the products, that they should appear on that page automatically.

Currently, I can get products to appear on my site, but I can’t seem to get them to display correctly and to use your template.
They try! If you look here you will see that I get products showing up with the correct background etc but the boxes are not laid out correctly.

It should look like this page
I would like to see the grid background, with the list option and the quickview, the same as the normal product pages.
I also see an error with the list display -- the compare mouseover is not correct.

#4
Profile photo of Ziven Staff 100280.00 $tone September 8, 2014
Public

your issue has been fixed.

i have changed the file.

Code:

/app/design/frontend/default/jm_crafts/template/inchoo/onsale/sale.phtml
#7
Profile photo of SM Reeve 0.00 $tone September 23, 2014
Public

Hi Ziven,

Thank you so much for this it was greatly appreciated, however I’m trying to track down why the images aren’t working in the grid view?
They work when you click ‘quickview’ but not on the page itself as you can see here

One item I’m looking at, the KPak pack on special appears on the grid page here perfectly.
But it doesn’t appear on the sale page grid view.
I only see the placeholder.

Thank you so much!

#8
Profile photo of Ziven Staff 100280.00 $tone September 23, 2014
Public

The issue on your site has been fixed.

I have changed the file.

Code:

/app/design/frontend/default/jm_crafts/template/inchoo/onsale/sale.phtml

on the file i have added new code like this image. http://prntscr.com/4pg5rn

on line 132 changed code from

Code:

<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" ><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize($productgridimagewidth,$productgridimageheight); ?>" width="<?php echo $productgridimagewidth;  ?>" height="<?php echo $productgridimageheight;  ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>

To.

Code:

<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" >
                    <img src="<?php echo $_product->getImageUrl(); ?>" width="<?php echo $productgridimagewidth;  ?>" height="<?php echo $productgridimageheight;  ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
                  </a>
#9

Please login or Register to Submit Answer

Written By

Comments