Opans Posted March 20, 2021 Share Posted March 20, 2021 Hi pros and experts.. i am using prestashop 1.7.4.4 and using warehouse theme my problem now is i want the quickview to always visible (remove hover effect) and move the position to below product price.. here is the screenshot and product-tpl.list code any help is greatly appreciated <div class="col-12 col-sm-auto col-buy"> {block name='product_price_and_shipping'} {if $product.show_price} <div class="product-price-and-shipping" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> {if isset($currency.iso_code)}<meta itemprop="priceCurrency" content="{$currency.iso_code}">{/if} {hook h='displayProductPriceBlock' product=$product type="before_price"} <span itemprop="price" class="product-price" content="{$product.price_amount}">{$product.price}</span> {if $product.has_discount} {hook h='displayProductPriceBlock' product=$product type="old_price"} <span class="regular-price">{$product.regular_price}</span> {/if} {hook h='displayProductPriceBlock' product=$product type='unit_price'} {hook h='displayProductPriceBlock' product=$product type='weight'} {if $product.has_discount} {hook h='displayCountDown'} {/if} </div> {/if} {/block} {block name='product_add_cart'} {include file='catalog/_partials/miniatures/_partials/product-miniature-btn.tpl'} {/block} {block name='product_list_functional_buttons'} <div class="product-functional-buttons product-functional-buttons-bottom"> <div class="product-functional-buttons-links"> {hook h='displayProductListFunctionalButtons' product=$product} {block name='quick_view'} <a class="js-quick-view-iqit" href="#" data-link-action="quickview" data-toggle="tooltip" title="{l s='Quick view' d='Shop.Theme.Actions'}"> <i class="fa fa-eye" aria-hidden="true"></i></a> {/block} </div> </div> {/block} </div> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now