Title: Bug Please help me !
Last modified: December 30, 2021

---

# Bug Please help me !

 *  Resolved [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/)
 * Hello,
 * I found a problem in Woocommmerce. I checked this problem on several websites
   and all of them show the same problem.
    Some of my customers reported this problem
   and they said they can’t place their orders. Because of this problem I disabled
   phone field from the checkout page, but it is necessary. Please check the video.
   One of my customers said he can’t register his order and I checked his phone 
   number. When I typed his phone number everything’s Okay but when I pasted his
   phone number your plugin crashed and gave us an error that the phone number is
   not valid !!!! And after that if we change the phone number, your plugin can’t
   recognize it and give the same error and don’t let the customers to place their
   orders.
 * [https://uupload.ir/view/woocommerce_error_4319.mp4/](https://uupload.ir/view/woocommerce_error_4319.mp4/)
    -  This topic was modified 4 years, 4 months ago by [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/).
    -  This topic was modified 4 years, 4 months ago by [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/).

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206275)
 * Please let me know how we can disable the phone validation !!! We only need a
   field that customers enter their phone number. Thanks
 *  [mother.of.code](https://wordpress.org/support/users/imazed/)
 * (@imazed)
 * The Mother of Code
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206339)
 * [@azadbakhsh](https://wordpress.org/support/users/azadbakhsh/) I’d recommend 
   filling out all billing fields, and removing the `+` symbol when you copy the
   number.
 * Alternatively, you can make the phone field optional to remove the validation.
   Here’s code that you can try:
 *     ```
       add_filter( 'woocommerce_billing_fields', 'custom_billing_fields' );
       function custom_billing_fields( $fields ) {
           // Only on checkout page
           if( is_checkout() && ! is_wc_endpoint_url() ) {
               $fields['billing_phone']['required'] = false;
           }
           return $fields;
       }
   
       // Remove string "(optional)" from billing phone field
       add_filter( 'woocommerce_form_field' , 'remove_checkout_optional_fields_label', 10, 4 );
       function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
           // Only on checkout page
           if( is_checkout() && ! is_wc_endpoint_url() && $key === 'billing_phone') {
               $optional = '&nbsp;<span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>';
               $field = str_replace( $optional, '', $field );
           }
           return $field;
       }
       ```
   
 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206360)
 * Thank you for your reply.
    Unfortunately when your plugin crashes, it won’t work
   any more. I made the phone field optional but it is not working any more. Please
   check the video. Also, I can’t ask the customers to don’t enter + or any other
   symbol in the phone field.
 * [https://uupload.ir/view/20211230_132108_8yxd.mp4/](https://uupload.ir/view/20211230_132108_8yxd.mp4/)
 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206384)
 * Please check the new video.
    I paste without + symbol but again crashed !!!
 * [https://uupload.ir/view/new_47c.mp4/](https://uupload.ir/view/new_47c.mp4/)
 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206393)
 * I think there is a problem with this numbers “4923491539366‬‏” !!!!
    I tested
   on several website and all of them crashed after I paste this phone number
 *  [mother.of.code](https://wordpress.org/support/users/imazed/)
 * (@imazed)
 * The Mother of Code
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206412)
 * Hey [@azadbakhsh](https://wordpress.org/support/users/azadbakhsh/) – I can’t 
   replicate this issue on my end. I suggest doing a conflict test. Issues like 
   this may be caused by either a conflict with your theme or with another plugin.
   You can read more about plugin and theme conflicts here:
    [https://docs.woocommerce.com/document/woocommerce-self-service-guide/](https://docs.woocommerce.com/document/woocommerce-self-service-guide/)
 * The best way to determine if the issue is being caused by a theme and/or plugin
   is to do the following:
 * 1. Temporarily switch your theme back to the [Storefront](https://woocommerce.com/products/storefront)
   theme (it’s free)
    2. Disable all plugins except for WooCommerce 3. Test to see
   if the issue has been resolved. 4. If that resolves the issue, then slowly re-
   enable features until you find the one that’s causing the conflict.
 * This is best done on a staging site. That’s a copy of your live site, so you 
   can test things out without making changes to your actual site. Some hosting 
   companies offer a staging site service within their hosting plans. If yours does
   not, there is a great free plugin that will allow you to build a complete staging
   site with a few button clicks: [https://wordpress.org/plugins/wp-staging](https://wordpress.org/plugins/wp-staging).
    -  This reply was modified 4 years, 4 months ago by [mother.of.code](https://wordpress.org/support/users/imazed/).
 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15206461)
 * Dear [@imazed](https://wordpress.org/support/users/imazed/)
 * As I said the problem is with this “4923491539366‬‏” number
    Please check the
   video. This is no matter what we paste on the phone field, with + or without 
   +; it is working but when we paste this “4923491539366‬‏” number your plugin 
   crashes.
 * Of course I disabled all plugins and changed the theme to check the conflict 
   but this problem comes from your plugin. Also, as I said, on every website that
   I tasted the same error appeared.
    [https://uupload.ir/view/error_s15r.mp4/](https://uupload.ir/view/error_s15r.mp4/)
 * Okay, I’ll close this Thread. Good luck
    -  This reply was modified 4 years, 4 months ago by [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/).
 *  [MayKato](https://wordpress.org/support/users/maykato/)
 * (@maykato)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15207107)
 * Hi [@azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * I also tried this on my test site, but couldn’t reproduce the issue. The order
   went through without an issue: [https://snipboard.io/JIk8cT.jpg](https://snipboard.io/JIk8cT.jpg)
 * To take a closer look, could you please share a copy of your site’s System Status?
   You can find it via WooCommerce > Status. Select “Get system report” and then“
   Copy for support”.  Once you’ve done that, paste it here in your response.
 *  Thread Starter [azadbakhsh](https://wordpress.org/support/users/azadbakhsh/)
 * (@azadbakhsh)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15207822)
 *     ```
       ### WordPress Environment ###
   
       WordPress address (URL): https://shopipersia.com
       Site address (URL): https://shopipersia.com
       WC Version: 6.0.0
       REST API Version: ✔ 6.0.0
       WC Blocks Version: ✔ 6.3.3
       Action Scheduler Version: ✔ 3.3.0
       WC Admin Version: ✔ 2.9.4
       Log Directory Writable: ✔
       WP Version: 5.8.2
       WP Multisite: –
       WP Memory Limit: 256 MB
       WP Debug Mode: –
       WP Cron: ✔
       Language: en_US
       External object cache: ✔
   
       ### Server Environment ###
   
       Server Info: LiteSpeed
       PHP Version: 7.4.27
       PHP Post Max Size: 64 MB
       PHP Time Limit: 30
       PHP Max Input Vars: 1000
       cURL Version: 7.61.1
       OpenSSL/1.1.1k
   
       SUHOSIN Installed: –
       MySQL Version: 5.5.5-10.4.22-MariaDB
       Max Upload Size: 64 MB
       Default Timezone is UTC: ✔
       fsockopen/cURL: ✔
       SoapClient: ✔
       DOMDocument: ✔
       GZip: ✔
       Multibyte String: ✔
       Remote Post: ✔
       Remote Get: ✔
   
       ### Database ###
   
       WC Database Version: 6.0.0
       WC Database Prefix: wp_
       Total Database Size: 646.93MB
       Database Data Size: 510.01MB
       Database Index Size: 136.92MB
       wp_woocommerce_sessions: Data: 3.15MB + Index: 0.09MB + Engine MyISAM
       wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_order_items: Data: 0.11MB + Index: 0.06MB + Engine MyISAM
       wp_woocommerce_order_itemmeta: Data: 0.69MB + Index: 0.46MB + Engine MyISAM
       wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       crypto_files: Data: 0.02MB + Index: 0.33MB + Engine InnoDB
       crypto_membership: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
       crypto_payments: Data: 0.02MB + Index: 0.31MB + Engine InnoDB
       crypto_products: Data: 0.02MB + Index: 0.25MB + Engine InnoDB
       user_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_actionscheduler_actions: Data: 0.38MB + Index: 0.16MB + Engine MyISAM
       wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_actionscheduler_logs: Data: 0.52MB + Index: 0.37MB + Engine MyISAM
       wp_adtribes_my_conversions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_alm: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_commentmeta: Data: 0.14MB + Index: 0.16MB + Engine MyISAM
       wp_comments: Data: 0.69MB + Index: 0.24MB + Engine MyISAM
       wp_e_submissions: Data: 0.02MB + Index: 0.27MB + Engine InnoDB
       wp_e_submissions_actions_log: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
       wp_e_submissions_values: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_litespeed_avatar: Data: 1.52MB + Index: 0.30MB + Engine InnoDB
       wp_litespeed_url: Data: 8.52MB + Index: 8.08MB + Engine InnoDB
       wp_litespeed_url_file: Data: 1.52MB + Index: 4.05MB + Engine InnoDB
       wp_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_mailpoet_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_mailpoet_mapping_to_external_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_newsletters: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
       wp_mailpoet_scheduled_tasks: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_scheduled_task_subscribers: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_sending_queues: Data: 0.11MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_statistics_newsletters: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
       wp_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
       wp_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_subscribers: Data: 0.09MB + Index: 0.16MB + Engine InnoDB
       wp_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_subscriber_segment: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
       wp_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_options: Data: 14.01MB + Index: 0.76MB + Engine MyISAM
       wp_pinterest_automatic: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_postmeta: Data: 359.77MB + Index: 66.53MB + Engine MyISAM
       wp_posts: Data: 38.62MB + Index: 4.63MB + Engine MyISAM
       wp_sbb_badips: Data: 0.25MB + Index: 0.09MB + Engine InnoDB
       wp_sbb_badref: Data: 1.52MB + Index: 0.22MB + Engine InnoDB
       wp_sbb_blacklist: Data: 0.38MB + Index: 0.13MB + Engine InnoDB
       wp_sbb_fingerprint: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_sbb_http_tools: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_sbb_stats: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
       wp_sbb_visitorslog: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
       wp_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_termmeta: Data: 0.60MB + Index: 0.28MB + Engine MyISAM
       wp_terms: Data: 0.25MB + Index: 0.33MB + Engine MyISAM
       wp_term_relationships: Data: 16.15MB + Index: 28.75MB + Engine MyISAM
       wp_term_taxonomy: Data: 1.93MB + Index: 0.17MB + Engine MyISAM
       wp_usermeta: Data: 0.50MB + Index: 0.25MB + Engine MyISAM
       wp_users: Data: 0.03MB + Index: 0.04MB + Engine MyISAM
       wp_wc_admin_notes: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
       wp_wc_admin_note_actions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_category_lookup: Data: 0.01MB + Index: 0.02MB + Engine MyISAM
       wp_wc_customer_lookup: Data: 0.05MB + Index: 0.05MB + Engine MyISAM
       wp_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_order_product_lookup: Data: 0.08MB + Index: 0.07MB + Engine MyISAM
       wp_wc_order_stats: Data: 0.05MB + Index: 0.04MB + Engine MyISAM
       wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine MyISAM
       wp_wc_product_meta_lookup: Data: 2.52MB + Index: 3.09MB + Engine InnoDB
       wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
       wp_wpforms_entries: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
       wp_wpforms_entry_fields: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
       wp_wpforms_entry_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
       wp_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_wpmailsmtp_tasks_meta: Data: 0.03MB + Index: 0.01MB + Engine MyISAM
       wp_yith_wcps_shippings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
       wp_yith_wcwl: Data: 0.01MB + Index: 0.01MB + Engine MyISAM
       wp_yith_wcwl_lists: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_yoast_indexable: Data: 44.26MB + Index: 5.92MB + Engine MyISAM
       wp_yoast_indexable_hierarchy: Data: 2.99MB + Index: 6.59MB + Engine MyISAM
       wp_yoast_migrations: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
       wp_yoast_primary_term: Data: 1.19MB + Index: 1.23MB + Engine MyISAM
       wp_yoast_seo_links: Data: 3.45MB + Index: 0.95MB + Engine MyISAM
       wp_yoast_seo_meta: Data: 0.10MB + Index: 0.10MB + Engine MyISAM
   
       ### Post Type Counts ###
   
       ae_global_templates: 1
       aol_ad: 1
       aol_application: 2
       attachment: 31361
       aw_workflow: 1
       book_author: 1
       br_labels: 1
       cmm4e_menu: 1
       cmm4e_menu_theme: 1
       cost-calc: 2
       custom_css: 7
       customize_changeset: 10
       e-landing-page: 5
       elementor_library: 8
       elementskit_content: 1
       faq: 14
       footer: 14
       fpf_fields: 1
       hrf_faq: 4
       hrw_transactions_log: 1
       hrw_wallet: 1
       iksm: 1
       jet-menu: 1
       jet-woo-builder: 2
       mailpoet_page: 1
       mc4wp-form: 2
       megamenu: 7
       nav_menu_item: 297
       ninja-table: 1
       notice: 1
       notificationx: 1
       nutrition-label: 1
       oembed_cache: 89
       page: 25
       plus-mega-menu: 1
       polylang_mo: 1
       popup: 4
       popup_theme: 11
       post: 63
       postman_sent_mail: 250
       product: 16437
       product_variation: 171
       revision: 47
       schema: 2
       seopress_schemas: 1
       shop_coupon: 7
       shop_order: 480
       sidebar: 2
       size-chart: 12
       specs-table: 6
       staff: 5
       tablepress_table: 1
       ufaq: 1
       um_directory: 1
       um_form: 2
       um_tab: 1
       user_registration: 1
       wafs: 1
       watermark: 1
       wcp_ruleset: 3
       wcpa_pt_forms: 1
       woo_discount: 1
       woo_discount_cart: 1
       woo_mb_template: 40
       wpforms: 4
       wppb-ul-cpt: 1
       wpseo_locations: 6
       wpuf_contact_form: 4
       wpuf_input: 16
       xlwcty_thankyou: 1
       yith-wcdppm-rule: 1
       ywdpd_discount: 5
   
       ### Security ###
   
       Secure connection (HTTPS): ✔
       Hide errors from visitors: ✔
   
       ### Active Plugins (35) ###
   
       Click to Chat: by HoliThemes – 3.7
       Conditional Payments for WooCommerce: by Lauri Karisola / WooElements.com – 2.2.4
       Disable Cart Fragments: by Optimocha – 2.0
       Disable/Remove Google Fonts: by Fonts Plugin – 1.3.2
       Elementor Pro: by Elementor.com – 3.2.0
       Elementor: by Elementor.com – 3.5.3
       Essential Addons for Elementor: by WPDeveloper – 5.0.0
       Kirki Customizer Framework: by David Vongries – 3.1.9
       LiteSpeed Cache: by LiteSpeed Technologies – 4.4.6
       MC4WP: Mailchimp for WordPress: by ibericode – 4.8.6
       Martfury Addons: by DrFuri – 2.4.3
       Product Specifications for WooCommerce: by Am!n A.Rezapour – 0.5.1
       TaxoPress: by TaxoPress – 3.4.3
       Sw Product Brand: by WpThemeGo – 1.0.10
       Advanced Editor Tools (previously TinyMCE Advanced): by Automattic – 5.6.0
       Trustpilot-reviews: by Trustpilot – 2.5.888
       Product Feed PRO for WooCommerce: by AdTribes.io – 11.0.7
       WooCommerce Product Add-ons: by WooCommerce – 4.4.0
       WooCommerce Product Stock Alert: by WC Marketplace – 1.7.3
       WooCommerce: by Automattic – 6.0.0
       WooCommerce Email Customizer with Drag and Drop Email Builder: by Flycart Technologies LLP – 1.5.16
       Yoast SEO Premium: by fullkade.com – 17.8
       Yoast SEO: by Team Yoast – 17.8
       WP Mail SMTP: by WPForms – 3.2.1
       Wordpress Pinterest Automatic: by ValvePress – 4.14.4
       WPB Show Product Sales Number for WooCommerce: by wpbean – 1.0.2
       WPForms Custom Captcha: by WPForms – 1.3.0
       WPForms: by 20script – 1.6.3
       Yoast SEO: Local: by Team Yoast and Arjan Snaterse – 14.2
       Yoast SEO: WooCommerce: by Team Yoast – 14.5
       درگاه پرداخت یک پی برای افزونه ووکامرس وردپرس: by ماژول بانک – 1.1
       YITH WooCommerce Bulk Product Editing Premium: by YITH – 1.2.35
       YITH WooCommerce Customize My Account Page: by YITH – 3.3.0
       YITH WooCommerce Dynamic Pricing and Discounts Premium: by YITH – 2.1.9
       YITH WooCommerce Wishlist: by YITH – 3.4.0
   
       ### Inactive Plugins (10) ###
   
       Advanced Database Cleaner PRO: by Younes JFR. – 3.1.6
       ELEX WooCommerce Bulk Edit Products, Prices & Attributes (Basic): by ELEXtensions – 1.2.1
       MailPoet 3 (New): by MailPoet – 3.75.1
       Plugins Garbage Collector (Database Cleanup): by Vladimir Garagulya – 0.12
       Popup Maker: by Popup Maker – 1.16.3
       Product page shipping calculator for WooCommerce: by PI Websolution – 1.2.40
       Social Auto Poster: by WPWeb – 4.1.0
       StopBadBots: by Bill Minozzi – 6.74
       Virtual Reviews for WooCommerce: by VillaTheme – 1.2.1
       WP Rollback: by Impress.org – 1.7.1
   
       ### Dropin Plugins (1) ###
   
       object-cache.php: object-cache.php
   
       ### Must Use Plugins (1) ###
   
       .mu-plugin.php: by  –
   
       ### Settings ###
   
       API Enabled: ✔
       Force SSL: –
       Currency: EUR (€)
       Currency Position: left
       Thousand Separator: ,
       Decimal Separator: .
       Number of Decimals: 2
       Taxonomies: Product Types: bundle (bundle)
       external (external)
       grouped (grouped)
       simple (simple)
       variable (variable)
   
       Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
       exclude-from-search (exclude-from-search)
       featured (featured)
       outofstock (outofstock)
       rated-1 (rated-1)
       rated-2 (rated-2)
       rated-3 (rated-3)
       rated-4 (rated-4)
       rated-5 (rated-5)
   
       Connected to WooCommerce.com: –
   
       ### WC Pages ###
   
       Shop base: #1707 - /shop/
       Cart: #6 - /cart/
       Checkout: #7 - /checkout/
       My account: #8 - /my-account/
       Terms and conditions: ❌ Page not set
   
       ### Theme ###
   
       Name: Martfury
       Version: 2.7.5
       Author URL: http://demo2.drfuri.com
       Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
       WooCommerce Support: ✔
   
       ### Templates ###
   
       Overrides: martfury/woocommerce/cart/cart-shipping.php
       martfury/woocommerce/cart/cart-totals.php
       martfury/woocommerce/cart/cart.php
       martfury/woocommerce/cart/mini-cart.php
       martfury/woocommerce/checkout/form-checkout.php
       martfury/woocommerce/checkout/form-coupon.php
       martfury/woocommerce/checkout/form-login.php
       martfury/woocommerce/checkout/terms.php
       martfury/woocommerce/content-product.php
       martfury/woocommerce/content-single-product.php
       martfury/woocommerce/content-widget-product.php
       martfury/woocommerce/global/form-login.php
       martfury/woocommerce/global/quantity-input.php
       martfury/woocommerce/global/wrapper-end.php
       martfury/woocommerce/global/wrapper-start.php
       martfury/woocommerce/loop/add-to-cart.php
       martfury/woocommerce/loop/orderby.php
       martfury/woocommerce/loop/pagination.php
       martfury/woocommerce/myaccount/form-login.php
       martfury/woocommerce/myaccount/form-lost-password.php
       martfury/woocommerce/myaccount/my-address.php
       martfury/woocommerce/single-product/add-to-cart/external.php
       martfury/woocommerce/single-product/add-to-cart/simple.php
       martfury/woocommerce/single-product/add-to-cart/variable.php
       martfury/woocommerce/single-product/meta.php
       martfury/woocommerce/single-product/product-image.php
       martfury/woocommerce/single-product/product-thumbnails.php
       martfury/woocommerce/single-product/rating.php
       martfury/woocommerce/single-product/related.php
       martfury/woocommerce/single-product/review-meta.php
       martfury/woocommerce/single-product/stock.php
       martfury/woocommerce/single-product/tabs/tabs.php
       martfury/woocommerce/single-product/up-sells.php
       martfury/woocommerce/single-product-reviews.php
   
       ### Action Scheduler ###
   
       Canceled: 4
       Oldest: 2021-12-16 13:50:51 +0330
       Newest: 2021-12-17 11:57:07 +0330
   
       Complete: 1,583
       Oldest: 2021-12-20 14:49:39 +0330
       Newest: 2021-12-30 19:53:18 +0330
   
       Failed: 13
       Oldest: 2020-07-29 10:07:51 +0430
       Newest: 2021-12-08 07:34:43 +0330
   
       Pending: 2
       Oldest: 2021-12-31 03:33:45 +0330
       Newest: 2022-01-04 02:22:47 +0330
   
       ### Status report information ###
   
       Generated at: 2021-12-30 22:01:47 +03:30
       ```
   
 *  [Mirko P.](https://wordpress.org/support/users/rainfallnixfig/)
 * (@rainfallnixfig)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15208325)
 * Hi [@azadbakhsh](https://wordpress.org/support/users/azadbakhsh/),
 * Please contact us at [WooCommerce.com > My Account > Support.](https://woocommerce.com/my-account/create-a-ticket/)
 * You may need to log in to your WooCommerce.com account before you can access 
   that page.
 * Share a link to this forum thread so that we can keep track of what’s already
   been done.
 * We will be able to help you further there.
 * Thanks.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Bug Please help me !’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 10 replies
 * 3 participants
 * Last reply from: [Mirko P.](https://wordpress.org/support/users/rainfallnixfig/)
 * Last activity: [4 years, 4 months ago](https://wordpress.org/support/topic/bug-please-help-me/#post-15208325)
 * Status: resolved