Review App which allows me to only rate the bundle not the products in it

Review App which allows me to only rate the bundle not the products in it

rogifree
Visitor
1 0 0

Hi @ all,

my client offers a bundle that includes various products. I wanted to inquire whether there is the option to review only the bundle and exclude individual products within the bundle. Unfortunately, I cant find a 

Best regards, Roger

Replies 2 (2)

Huptech-Web
Shopify Partner
1152 230 261

Hello @rogifree ,

 

Please provide the page URL of the bundle and individual products!

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

KabirDev
Shopify Partner
248 61 75

Hi @rogifree,

To allow reviews for bundles without reviewing individual products, you can build a small custom app specifically for this purpose. Here's a simplified version of what the code might look like:

// Function to handle review submission for bundles
function submitBundleReview(bundleId, reviewData) {
    // Save the review for the bundle in a database
    saveReviewToDatabase(bundleId, reviewData);
}

// Function to display reviews for a bundle
function displayBundleReviews(bundleId) {
    // Fetch and display reviews from the database for the bundle
    var reviews = getReviewsFromDatabase(bundleId);
    reviews.forEach(review => {
        // Display each review on the bundle's page
    });
}

// Example usage:
// Submitting a review for a bundle
submitBundleReview('bundle123', { /* Review Data */ });

// Displaying reviews for a bundle
displayBundleReviews('bundle123');

The custom app should manage the reviews separately from individual product reviews, ensuring that only the bundle as a whole is reviewed. Integrating this with your Shopify store will allow customers to review the bundle without affecting the reviews of the individual products within it.

 

I hope you get a good idea to start!

- Control payment methods visibility at checkout by KlinKode PayRules app.
- Contact me directly at shahriar@kabirdev.com