spree_favorite_products
spree_favorite_products copied to clipboard
Display the number of favorites next to the link (Feature request)
Any suggestions on how I could add the number of products favorited next to the link to favorites page ?
@catalin88
You can override add_link_to_mark_product_as_favorite.rb
deface and use favorite_users_count
attribute on product to show how many people have marked it favorite.
In case you want to add number of favorite products with respect to user just next to favorite products tab you can override add_link_to_users_favorite_products.rb
deface and use spree_current_user.favorite_products.count
.