View Single Post
  #1  
Old 08-14-2005, 11:15 PM
  Dongan's Avatar 
Dongan Dongan is offline
 

X-Wizard
  
Join Date: Jul 2005
Location: www.mercuryminds.com
Posts: 1,531
 

Default Customization of dialog part of individual pages

Hi,

I think it is not too complicated to implement. however you should be bit careful.

This is an example for creating the own look for product view details part. You can make the changes like this to all the pages you wish to differentiate from the default dialog design.

1) Create a file dialog_product.tpl under skin1 directory.

2) Copy the contents of dialog.tpl to dialog_product.tpl file

3) Now change the look of the dialog_product.tpl as you want

4) Here is the trick...

Open skin1/customer/product.tpl file

then

change the code

{capture menu=dialog}

to

{capture menu=dialog_product}

then come to the capture close part...

{/capture}
{include file="dialog.tpl" title=$product.producttitle content=$smarty.capture.dialog extra="width=100%"}

change this to

{/capture}
{include file="dialog_product.tpl" title=$product.producttitle content=$smarty.capture.dialog_product extra="width=100%"}

that's it.
Reply With Quote