JaGallucci Posted May 12, 2020 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> Share this post Link to post Share on other sites More sharing options...
EvaF Posted May 12, 2020 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> Share this post Link to post Share on other sites More sharing options...
JaGallucci Posted May 12, 2020 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 Share this post Link to post Share on other sites More sharing options...
EvaF Posted May 13, 2020 Posted May 13, 2020 clear cache Share this post Link to post 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