Terms of Service

Spread the love

Effective Date: [1.4.2025]

1. Acceptance of Terms
By accessing or using the website Woe is Gie: A Place to Exhale (hereinafter referred to as “the Site”), you agree to comply with and be bound by the following terms and conditions. If you do not agree with any part of these terms, you must not use our site.

2. Use of Site

  • You are authorized to use the Site only for lawful purposes in accordance with these Terms.
  • You agree not to use the Site in a manner that could damage, disable, overburden, or impair the Site or interfere with any other party’s use and enjoyment of the Site.
  • You must not upload, transmit, or post any harmful or unlawful material to the Site.

3. Membership & Registration

  • To engage in certain features of the Site, you may be required to register for an account. You must provide accurate, up-to-date information during the registration process and update your information if it changes.
  • You are responsible for maintaining the confidentiality of your account credentials and for all activities that occur under your account.
  • You agree to notify us immediately if you suspect any unauthorized use of your account.

4. Content Guidelines

  • User-Generated Content: You retain ownership of content you submit to the Site but grant Woe is Gie a non-exclusive, worldwide, royalty-free license to use, modify, display, and distribute this content for the purpose of operating the Site.
  • You agree not to post or submit any content that is defamatory, harassing, discriminatory, or otherwise illegal or offensive.
  • You are solely responsible for the content you share, and any consequences that may arise from it.

5. Community and Behavior

  • Respectful behavior is expected of all users. Harassment, hate speech, or any harmful behavior will not be tolerated.
  • Disputes within the community should be resolved amicably; however, Woe is Gie reserves the right to remove or ban any members who engage in harmful or disruptive behavior.

6. Third-Party Links and Content

  • The Site may contain links to third-party websites or resources. We do not endorse or control these external websites and are not responsible for their content or privacy practices.
  • Accessing third-party sites or content is at your own risk.

7. Privacy Policy
Your use of the Site is governed by our Privacy Policy, which outlines the collection, use, and protection of your personal data. Please read it carefully.

8. Intellectual Property

  • The content on the Site, including but not limited to text, graphics, logos, and software, is owned by or licensed to Woe is Gie. All intellectual property rights are reserved.
  • You may not reproduce, modify, or distribute any content from the Site without proper authorization.

9. Termination
We reserve the right to suspend or terminate your access to the Site, without notice, if we believe that you have violated these Terms or engaged in any illegal, harmful, or unethical behavior. Upon termination, your right to use the Site will immediately cease, and any content you have posted may be removed.

10. Limitation of Liability
To the fullest extent permitted by law, Woe is Gie is not liable for any indirect, incidental, consequential, or punitive damages arising from the use or inability to use the Site. We do not guarantee uninterrupted access to the Site or that the Site will be free from errors.

11. Indemnification
You agree to indemnify and hold harmless Woe is Gie, its affiliates, and employees from any claims, losses, damages, or expenses arising out of your use of the Site or violation of these Terms.

12. Changes to Terms
Woe is Gie reserves the right to update or revise these Terms at any time. Any changes will be posted on this page with the updated effective date. By continuing to use the Site after any modifications, you agree to be bound by the revised Terms.

13. Governing Law
These Terms are governed by and construed in accordance with the laws of [insert applicable jurisdiction].

14. Contact Us
If you have any questions regarding these Terms, please contact us at on our contact page.

Scroll to Top
add_action('woocommerce_before_single_product', 'add_affiliate_links_to_product_image_and_button', 10);function add_affiliate_links_to_product_image_and_button() { global $product;// Check if the product has an affiliate URL $affiliate_url = get_post_meta($product->get_id(), '_affiliate_url', true); if ($affiliate_url) { // Modify product image link remove_action('woocommerce_before_single_product', 'woocommerce_show_product_images', 20); add_action('woocommerce_before_single_product', function() use ($affiliate_url) { echo ''; woocommerce_show_product_images(); // Product images echo ''; }, 20);// Modify Buy button (which is actually "Add to Cart" button in WooCommerce) remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30); add_action('woocommerce_single_product_summary', function() use ($affiliate_url) { echo 'Buy Now'; }, 30); } }