TycheSoftwares / woocommerce-abandoned-cart

This is repository for Abandon cart lite version.
13 stars 11 forks source link

Update the FAQ's we have added in the "FAQ & Support" tab. #994

Open priyanka-tychesoftwares opened 3 days ago

priyanka-tychesoftwares commented 3 days ago

Prerequisites

Describe the bug

The FAQs we have added to the plugin need to be updated. Some new FAQs need to be added for the newly added features.

Steps to reproduce

-

Expected behavior

The FAQ's we have in the "FAQ & Support" tab of our plugin should be updated according to the current features.

WordPress Environment

-

Isolating the problem

Additional field

No response

priyanka-tychesoftwares commented 2 days ago

Here are the updated FAQ's:

  1. What qualifies as an abandoned cart? : A cart is deemed abandoned when a user adds items but leaves the website without completing the purchase. We capture email addresses in real-time during checkout for guest users and use logged-in users' emails from their profiles as soon as they add a product to the shopping cart. The cart is marked abandoned once a designated cut-off time has elapsed.

  2. How can I check if reminder emails for abandoned carts have been sent? : To verify, you can click the "View Order" link under the Abandoned Orders tab for details on specific emails.

  3. Why aren't my abandoned cart reminder emails being sent? : Ensure you have at least one active email template; only active templates trigger abandoned cart recovery. If active and still not sending, check out our troubleshooting guide here.

  4. Can I hide tax from product prices in abandoned orders? : Our plugin doesn’t directly hide tax, but you can use this below custom code in your theme’s "functions.php" file to conceal tax details:

function wcap_show_taxes() {
    return false;
}
add_filter('wcap_show_taxes', 'wcap_show_taxes', 10, 1);
  1. Can I delete all abandoned cart records at once? : Yes, you can use the "Bulk actions" dropdown on the Abandoned Orders tab to delete all carts. You can also delete only the visitor, registered, or guest carts using that option.

  2. How do I stop tracking visitor carts? : You can disable the "Start tracking from Cart Page" setting present at Abandoned Carts -> Settings -> General Settings to stop capturing the visitor carts where no email address is entered.

  3. Are Pending and Failed orders treated as abandoned? : No, orders that are Pending Payment or Failed are not considered abandoned, and no reminder emails will be sent.

  4. How can I translate the {{products.cart}} tag in emails? : Create and upload ".po" and ".mo" files in your desired language to "woocommerce-abandoned-cart/i18n/languages".

  5. Why are there so many logged carts? : If you notice a high number of logged carts without names and email addresses, it may be due to bots. In that case, please update your robots.txt file to prevent bot interactions with your cart.

  6. Is your plugin GDPR compliant? : Yes, our Abandoned Cart Lite plugin complies with GDPR. We collect user data only with consent, and all data stays on your site, accessible under the Abandoned Orders tab. GDPR settings can be found in the plugin's General Settings.

  7. Can I offer discounts in reminder emails? : Yes, the Lite version includes a Coupon Code feature, allowing you to offer discounts in reminder emails. You will find the Coupon settings in the Email template.

  8. Do I need to manually set up a cron job in cPanel? : No, you don't need to set up the cron job manually in cPanel. We have introduced the Action Scheduler Library instead of WP-Cron to send reminders automatically. Action Scheduler will reduce the dependency on the WP-Cron and if the WP-Cron is disabled, it will still run the actions on admin page requests. You can check out this help guide to know more about the Action Scheduler Library.