JaGallucci Posted May 12, 2020 Share Posted May 12, 2020 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> Link to comment Share on other sites More sharing options...
EvaF Posted May 12, 2020 Share Posted May 12, 2020 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 More sharing options...
JaGallucci Posted May 12, 2020 Author Share Posted May 12, 2020 Thank you! I got tired of doing over and over again what you say without results. It only works when I change the theme Link to comment Share on other sites More sharing options...
EvaF Posted May 13, 2020 Share Posted May 13, 2020 clear cache 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