Jump to content

Remove parentheses from cart icon


JaGallucci

Recommended Posts

Hi.

I want to remove the parentheses that enclose the amount of products that I have in the cart. How do i do it?

It currently appears like this: (1)
and I want it to be just like this: 1

the line is: <span class = "cart-products-count"> (1) </span>

captura2.jpg

Link to comment
Share on other sites

modify file
themes/classic/modules/ps_shoppingcart/ps_shoppingcart.tpl
or (themes/yourtheme/modules/ps_shoppingcart/ps_shoppingcart.tpl)

<!-- change      <span class="cart-products-count">({$cart.products_count})</span>     -->
<!-- to                                                                                -->
       <span class="cart-products-count">{$cart.products_count}</span>

 

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...