mygreenbin

Who we are

Suggested text: Our website address is: https://mygreenbin.in.

Comments

At MyGreenBin by Greenrich Grow India Pvt. Ltd., we are committed to protecting your privacy and personal information.

What We Collect:

  • Contact details (name, email, phone)

  • Address for delivery/service

  • Inquiry and purchase information

  • Website usage data (cookies, analytics)

How We Use It:

  • To respond to your queries and fulfill orders

  • To provide customer support and updates

  • To improve website performance and user experience

  • For internal analysis and service enhancement

We Do Not:

  • Sell or share your data with third parties for marketing

  • Store sensitive payment information (processed via secure gateways)

Your Rights:

  • You may request to view, update, or delete your personal data

  • You can opt out of marketing communications anytime

Security:
We follow industry-standard data protection protocols to ensure your information is safe and secure.

Contact:
For any privacy-related concerns, reach us at:
admin@mygreenbin.in

// Show discount percentage badge on WooCommerce products add_action('woocommerce_before_shop_loop_item_title', 'ww_sale_percentage_badge', 10); function ww_sale_percentage_badge() { global $product; if ($product->is_on_sale() && $product->get_regular_price()) { $regular_price = (float) $product->get_regular_price(); $sale_price = (float) $product->get_sale_price(); if ($regular_price > 0) { $percentage = round( ( ($regular_price - $sale_price) / $regular_price ) * 100 ); echo '-' . $percentage . '%'; } } }