Hi @stefan1904,
Thank you so much for your kind words! We are thrilled to hear that you are enjoying our feature-rich plugin and that you appreciate the value it brings compared to other paid alternatives.
Regarding your first suggestion about adding visible “+/-” quantity buttons to create a more modern and user-friendly experience, we think that is a fantastic idea. We will gladly raise this feature request with our development team for future updates.
For your second point regarding products with no price showing up with a $0 price/subtotal and an active “Add to Cart” button in the wishlist, we would love to look into this further to see how we can better support your setup.
To help us investigate, could you please clarify how these specific products are set up on your store?
- Are you currently using a third-party catalog/quote plugin, or a custom code snippet to remove the prices and handle the “price on request” behavior?
- If so, would you mind sharing the name of the plugin or copying the exact code snippet here with us?
This will help us understand the implementation details so we can work towards a solution.
Looking forward to your reply!
Best regards,
-
This reply was modified 1 month, 1 week ago by
Fitri Sinta.
Thread Starter
tom8123
(@stefan1904)
We use custom code (and the theme Woodmart with a special layout without standard add to cart button). The custom code shows a text “Price on request” instead of the product price. In the backend the price field is empty for these products.
add_filter('woocommerce_get_price_html', 'custom_price_on_request', 10, 2);
function custom_price_on_request($price, $product) {
if ($product->get_price() == '' || $product->get_price() == 0) {
return '<span>Price on request</span>';
}
return $price;
}
Another thing: the wishlist does not show the single price of the selected variation but the price range of all variations. Please change this to the specific price of the variation.
Two other feature requests:
– Allow us to manual insert the wishlist icon to category list and product page (shortcode or even better with specific Gutenberg block).
– Add sku column to wishlist (important for B2B businesses)
-
This reply was modified 3 weeks, 2 days ago by
tom8123.
Hi @stefan1904,
Thank you for getting back to us with the additional details.
We’ve logged the following feature requests with our development team:
- Hide the price instead of
— for products without a price.
- Hide the Add to Cart button for products that aren’t purchasable.
- Show the selected variation’s price instead of the full variation price range.
- Add an optional SKU column to the wishlist table.
Regarding your request to manually insert the wishlist button via a shortcode or Gutenberg block, could you clarify your use case? The plugin already includes Button Placement settings under the “Button Placement & Styles” tab for the Shop, Product, and Cart pages, and category/archive pages inherit the placement configured for the Shop page. Are you looking to place the wishlist button in a completely custom location instead of using the existing placement options? If so, where would you like it to appear?
At this stage, there aren’t any workarounds available for the feature requests above, and we don’t have an ETA. Thank you so much for your feedback.
Best regards,