Jump to content

[SOLVED] Deleting a fancybox or layer!


Recommended Posts

Hi all,

I want to show the price of products in homepage! but the theme I am using "Boutique" has the posibility to show the name and price of product only when you hover over the picture

here is the link

www.chabaane.de

 

what I want is that the names and prices are shown directly...any ideas please?

thanks

Edited by walidon (see edit history)
Link to comment
Share on other sites

Hi,

 

Open your cshometab1 module in your boutiques theme. And edit cshometab1.tpl file.

Find "<div class="cs_newarrival_p product-1">" and put this code

 

<h3><a href="{$product.link}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></h3>
                                    <div class="products_list_price">
                                        {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
                                        
                                            {if $priceDisplay && $product.reduction}
                                                {if $product.specific_prices}
                                                    <span class="price-discount">
                                                        {convertPrice price=$product.price_without_reduction}
                                                    </span>
                                                {/if}
                                            {/if}
                                            
                                            <span class="price">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span>
                                        {/if}
                                    </div>

 

 

under <a href="{$product.link}" title="" class="product_image outside"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'p_slider_home')}" alt="{$product.name|escape:html:'UTF-8'}" />

 

                                    </a>

 

Your issue will be resolved :)

Link to comment
Share on other sites

thank you very much, that worked but...

now there is the issue that the second row is not showing correctly and that the prices are hidden! i resized but it is still the same? can you give a solution for why only one row is showing the prices?

Edited by walidon (see edit history)
Link to comment
Share on other sites

  • 1 month later...

Hi I need your help again!

 

www.chabaane.de

 

now if i want to apply discount, only the price show not like showing the old price barred and then the new price?

it shows only the new price (if the discount is 50%, then it shows only half the price) so customers don't know that there is a price! this is of course only in the home page with the code that you provided and i applied it!

or can you tell me how to do to make things better!

 

P.S: I added the -50% but that is not so clear! i need the old price (barred) then the new reduced one like in the other examples in the site! plus is it possible to add the image of the -50% like in the other articles as well?

thank you...

Edited by walidon (see edit history)
Link to comment
Share on other sites

yes the -50% is there but it is confusing as whether the price is the one with the reduction or not!

what i want is the old price with a line on it (like crossed) and then the new reduced price, then we don't need the -50%?

 

to see what i mean click on the quickview on any article on homepage and you will find that!

 

thank you in advance:)

Link to comment
Share on other sites

Ah:) sorry for my misunderstanding:)! in the theme folder there is the folder blocknewproducts but there there is only the folder translation. but in modules (in the root of the site) there is only blocknewproducts.tpl 

my template is boutique and i can create as man hometab as i like, but the new tab is by default there:) i haven't tried to create another tab yet;)

 

update: i added a new tab but it is the samething!

 

it is the hometab module of the them which controls the thing! so it is there!

Edited by walidon (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...