Jump to content

[SOLVED] Featured Products v0.9 doesn’t allow selections in "Add To Cart"


Recommended Posts

How do I remove the "Add To Cart" button on the home page featured products?

I'm running "Featured Products on the homepage v0.9".

My featured products come in various sizes and color, but when I click the Add to cart" button, it doesn't provide for selections.

Is there a workaround or a newer module that will do this?

Huh?? Either I'm missing something or PrestaShop is....

Link to comment
Share on other sites

PrestaShop v1.4 has the option to hide the "Add to cart" button for products with attributes, or hide it completely. Until it is released, the only option is to manually delete the code. To show the "Add to cart" button on products without attributes only, change lines 20-24 of modules/homefeatured/homefeatured.tpl from:

{if ($product.quantity > 0 OR $product.allow_oosp) AND $product.customizable != 2}
{l s='Add to cart' mod='homefeatured'}
{else}
{l s='Add to cart' mod='homefeatured'}
{/if}



to:

{if !$product.id_product_attribute}
{if ($product.quantity > 0 OR $product.allow_oosp) AND $product.customizable != 2}
{l s='Add to cart' mod='homefeatured'}
{else}
{l s='Add to cart' mod='homefeatured'}
{/if}
{/if}



or to remove the "Add to cart" button altogether, change it to:

{*{if ($product.quantity > 0 OR $product.allow_oosp) AND $product.customizable != 2}
{l s='Add to cart' mod='homefeatured'}
{else}
{l s='Add to cart' mod='homefeatured'}
{/if}*}

Link to comment
Share on other sites

Rocky, you wanna double check this code again, doesn't work for me - I want to eliminate "all" the Add To Cart buttons:

{*{if ($product.quantity > 0 OR $product.allow_oosp) AND $product.customizable != 2}
{l s='Add to cart' mod='homefeatured'}
{else}
{l s='Add to cart' mod='homefeatured'}
{/if}*}

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...