• Resolved gguldens

    (@gguldens)


    When I login, go to the my-account-page, and then choose an order to view; the line with “Order # ” is followed by the order number, but it is rendered in white and is not visible on the white background. Similarly, the “was placed on ” is followed by the date of the order which is also not visible. Finally, “and is currently ” is followed by the order status which is not visible. Below is the code that is rendering this section:

    <p>
    Order #<mark class=”order-number”>9098</mark> was placed on <mark class=”order-date”>May 31, 2022</mark> and is currently <mark class=”order-status”>Cancelled</mark>.</p>

    I have looked in all the CSS I can find for the theme and cannot find a class “order-number”, “order-date”, or “order-status”. So, it would seem that WooCommerce is trying to highlight these fields somehow, but it seems that something is missing from the plugin code.

    Am I anywhere near correct here?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter gguldens

    (@gguldens)

    Probably not the best fix, but I got it working and displaying the line correctly.
    I put the following code into the style.css file for the theme I am using.

    /**
     * adding classes for Woocommerce View Order
     */
    
    .order-number {
            color: #df4d0f;
            font-weight: bold;
    }
    
    .order-date {
            color: #df4d0f;
            font-weight: bold;
    }
    
    .order-status {
            color: #df4d0f;
            font-weight: bold;
    }

    This rendered the missing text in a dark orange and bold. Works for me.

    Hey @gguldens,

    Could you please send us a screenshot that illustrates the problem?

    Also, I appreciate if you can include your System Status Report. You can get it at WooCommerce > Status.

    Thank you.

    Thread Starter gguldens

    (@gguldens)

    How do I send a screen shot? Your email is from noreply and I see no way to attach an image?

    Hello,

    No problem, for screenshots you can upload them via https://snipboard.io – please follow the instructions on that page, then paste the URL in this thread.

    Let us know, thanks.

    Thread Starter gguldens

    (@gguldens)

    Gabriel,
    I managed to get the desktop rendering to correct itself by adding the following into the style.css for the theme I am using:

    /**
     * adding classes for Woocommerce View Order
     */
    
    .order-number {
            color: #df4d0f;
            font-weight: bold;
    }
    
    .order-date {
            color: #df4d0f;
            font-weight: bold;
    }
    
    .order-status {
            color: #df4d0f;
            font-weight: bold;
    }
    i

    Unfortunately, when I checked on my phone, this did not fix the issue there.

    Uploaded a screen capture to https://snipboard.io/wTCzkd.jpg

    Woocommerce Status

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://www2.goldysbrand.com
    Site address (URL): https://www2.goldysbrand.com
    WC Version: 6.5.1
    REST API Version: ? 6.5.1
    WC Blocks Version: ? 7.4.3
    Action Scheduler Version: ? 3.4.0
    Log Directory Writable: ?
    WP Version: 6.0
    WP Multisite: –
    WP Memory Limit: 1 GB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.37 (centos) OpenSSL/1.1.1k mod_fcgid/2.3.9
    PHP Version: 8.0.18
    PHP Post Max Size: 4 GB
    PHP Time Limit: 600
    PHP Max Input Vars: 3000
    cURL Version: 7.61.1
    OpenSSL/1.1.1k
    
    SUHOSIN Installed: –
    MySQL Version: 10.3.28-MariaDB
    Max Upload Size: 4 GB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 6.5.1
    WC Database Prefix: wp_
    Total Database Size: 133.41MB
    Database Data Size: 84.36MB
    Database Index Size: 49.05MB
    wp_woocommerce_sessions: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_order_itemmeta: Data: 0.09MB + Index: 0.09MB + Engine InnoDB
    wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    sm_diagnostic_session: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_duplicated_urls_key: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_external_url_in_desc: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    sm_images_unlinked_to_prod: Data: 0.02MB + Index: 0.01MB + Engine MyISAM
    sm_invisible_products: Data: 0.06MB + Index: 0.01MB + Engine MyISAM
    sm_meta_title_out_of_range: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
    sm_missing_images: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_products_without_sku: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_product_without_category: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_product_without_image: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    sm_unused_images: Data: 0.23MB + Index: 0.04MB + Engine MyISAM
    vp_backup_wp_actionscheduler_actions: Data: 0.23MB + Index: 0.25MB + Engine InnoDB
    vp_backup_wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_automatewoo_abandoned_carts: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    vp_backup_wp_automatewoo_customers: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    vp_backup_wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_automatewoo_events: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    vp_backup_wp_automatewoo_guests: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    vp_backup_wp_automatewoo_guest_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_automatewoo_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    vp_backup_wp_automatewoo_log_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    vp_backup_wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    vp_backup_wp_ewwwio_images: Data: 0.17MB + Index: 0.17MB + Engine InnoDB
    vp_backup_wp_ewwwio_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_masterslider_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_masterslider_sliders: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_options: Data: 2.52MB + Index: 0.14MB + Engine InnoDB
    vp_backup_wp_postmeta: Data: 7.52MB + Index: 10.55MB + Engine InnoDB
    vp_backup_wp_posts: Data: 4.52MB + Index: 0.44MB + Engine InnoDB
    vp_backup_wp_smconnector_failed_login: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_smconnector_session_keys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_termmeta: Data: 0.17MB + Index: 0.23MB + Engine InnoDB
    vp_backup_wp_terms: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_term_relationships: Data: 0.13MB + Index: 0.09MB + Engine InnoDB
    vp_backup_wp_term_taxonomy: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_usermeta: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    vp_backup_wp_wcfm_daily_analysis: Data: 0.28MB + Index: 0.19MB + Engine InnoDB
    vp_backup_wp_wcfm_detailed_analysis: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_enquiries_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_fbc_chat_rows: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_fbc_chat_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wcfm_fbc_chat_visitors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_fbc_offline_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_product_multivendor: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_refund_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_refund_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_reverse_withdrawal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_reverse_withdrawal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_reviews_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_reviews_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_review_rating_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_store_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_vendor_ledger: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_withdraw_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_marketplace_withdraw_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_membership_subscription: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wcfm_support_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    vp_backup_wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    vp_backup_wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_wc_product_meta_lookup: Data: 0.06MB + Index: 0.09MB + Engine InnoDB
    vp_backup_wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_wonderplugin_slider: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    vp_backup_wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_woocommerce_sessions: Data: 0.16MB + Index: 0.02MB + Engine InnoDB
    vp_backup_wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    vp_backup_wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    vp_backup_wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    vp_backup_wp_woof_query_cache: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_actions: Data: 0.16MB + Index: 0.17MB + Engine InnoDB
    wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_logs: Data: 0.13MB + Index: 0.13MB + Engine InnoDB
    wp_automatewoo_abandoned_carts: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wp_automatewoo_customers: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_automatewoo_events: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_automatewoo_guests: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_automatewoo_guest_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_automatewoo_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_automatewoo_log_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_ayspoll_answers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_formfields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_polls: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_reports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayspoll_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_answers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_attributes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_questions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_question_tags: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_quizcategories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_quizes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_rates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_reports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_aysquiz_themes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_answers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_popup_surveys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_questions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_question_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_sections: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_submissions_questions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_surveys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ayssurvey_survey_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_c4wp_failed_login_tracking: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_comments: Data: 0.08MB + Index: 0.09MB + Engine InnoDB
    wp_depicter_documents: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_depicter_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_ewwwio_images: Data: 0.25MB + Index: 0.25MB + Engine InnoDB
    wp_ewwwio_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    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_hustle_entries: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hustle_entries_meta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_hustle_modules: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_hustle_modules_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_hustle_tracking: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_masterslider_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_masterslider_sliders: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_options: Data: 8.03MB + Index: 1.16MB + Engine InnoDB
    wp_postmeta: Data: 18.52MB + Index: 21.03MB + Engine InnoDB
    wp_posts: Data: 7.52MB + Index: 0.81MB + Engine InnoDB
    wp_sgpb_analytics: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sgpb_cities: Data: 2.52MB + Index: 1.52MB + Engine InnoDB
    wp_sgpb_contacted_subscribers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sgpb_push_notification: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sgpb_push_notification_campaigns: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sgpb_subscribers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_sgpb_subscription_error_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_smconnector_failed_login: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_smconnector_session_keys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_termmeta: Data: 0.22MB + Index: 0.30MB + Engine InnoDB
    wp_terms: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_term_relationships: Data: 0.30MB + Index: 0.13MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.11MB + Index: 0.06MB + Engine InnoDB
    wp_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_usermeta: Data: 0.19MB + Index: 0.11MB + Engine InnoDB
    wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wccs_conditions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wccs_condition_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wcfm_daily_analysis: Data: 4.52MB + Index: 4.52MB + Engine InnoDB
    wp_wcfm_detailed_analysis: Data: 10.52MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_fbc_chat_rows: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_fbc_chat_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_fbc_chat_visitors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_fbc_offline_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_marketplace_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_product_multivendor: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_marketplace_refund_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_refund_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reverse_withdrawal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reverse_withdrawal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reviews_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reviews_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_review_rating_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_store_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_vendor_ledger: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_withdraw_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_withdraw_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_membership_subscription: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_product_attributes_lookup: Data: 0.06MB + Index: 0.09MB + Engine InnoDB
    wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_meta_lookup: Data: 0.09MB + Index: 0.09MB + Engine InnoDB
    wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wdr_order_item_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wfpklist_template_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wonderplugin_slider: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    wp_woof_query_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
    __wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_ce4wp_abandoned_checkout: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    __wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_masterslider_options: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_masterslider_sliders: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    __wp_options: Data: 2.52MB + Index: 0.14MB + Engine InnoDB
    __wp_postmeta: Data: 1.52MB + Index: 0.47MB + Engine InnoDB
    __wp_posts: Data: 1.52MB + Index: 0.16MB + Engine InnoDB
    __wp_smconnector_failed_login: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_smconnector_session_keys: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_termmeta: Data: 0.11MB + Index: 0.14MB + Engine InnoDB
    __wp_terms: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    __wp_term_relationships: Data: 0.11MB + Index: 0.06MB + Engine InnoDB
    __wp_term_taxonomy: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    __wp_usermeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    __wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    __wp_wcfm_daily_analysis: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_wcfm_detailed_analysis: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_enquiries_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_fbc_chat_rows: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_fbc_chat_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_wcfm_fbc_chat_visitors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_fbc_offline_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wcfm_support_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wc_admin_notes: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    __wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    __wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    __wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    __wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_wc_product_meta_lookup: Data: 0.05MB + Index: 0.09MB + Engine InnoDB
    __wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    __wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_sessions: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    __wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    __wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    __wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    __wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    attachment: 546
    aw_workflow: 3
    b2bking_custom_field: 11
    b2bking_custom_role: 2
    b2bking_group: 2
    b2bking_rule: 1
    customize_changeset: 13
    elementor_library: 1
    jb_store_css: 10
    jetpack_migration: 2
    jp_img_sitemap: 3
    jp_pay_product: 1
    jp_sitemap: 3
    jp_sitemap_master: 3
    nav_menu_item: 57
    oembed_cache: 8
    page: 55
    popup: 1
    popupbuilder: 4
    post: 2
    product: 286
    product_variation: 175
    revision: 563
    shop_coupon: 5
    shop_order: 34
    shop_order_refund: 1
    stocktend_object: 3624
    stocktend_tryst: 2
    wp_global_styles: 5
    wpcf7_contact_form: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (58) ###
    
    CAPTCHA 4WP (Premium): by WP White Security – 7.0.6
    Akismet Anti-Spam: by Automattic – 4.2.4
    AutomateWoo: by WooCommerce – 5.5.15
    B2BKing Pro: by WebWizards – 3.9.1
    B2BKing Core: by WebWizards – 4.0.0
    Gutenberg Block for WooCommerce Product Table: by Barn2 Plugins – 1.0.6
    Classic Editor: by WordPress Contributors – 1.6.2
    Classic Widgets: by WordPress Contributors – 0.3
    Colorlib Login Customizer: by Colorlib – 1.3.1
    Contact Form 7: by Takayuki Miyoshi – 5.5.6.1
    Add Featured Image Custom Link: by Viitorcloud – 1.1.0
    Customer Reviews for WooCommerce: by CusRev – 4.42
    Disable Admin Notices Individually: by Creative Motion  – 1.3.0
    Duplicate Page: by mndpsingh287 – 4.4.8
    Easy Theme and Plugin Upgrades: by Chris Jean – 2.0.2
    Discount Rules and Dynamic Pricing for WooCommerce: by Asana Plugins – 6.7.1
    EWWW Image Optimizer: by Exactly WWW – 6.6.0
    Flexible Shipping UPS: by Octolize – 1.17.11
    Font Awesome: by Font Awesome – 4.1.1
    Gutentor - Gutenberg Blocks - Page Builder for Gutenberg Editor: by Gutentor – 3.2.2
    HT Easy GA4: by HasThemes – 1.0.3
    Jetpack Boost: by Automattic – 1.4.2
    Jetpack: by Automattic – 11.0
    Master Slider: by averta – 3.8.1
    Poll Maker: by Poll Maker Team – 21.3.9.2
    Popup Builder activator: by Sygnoos – 1.0.0
    Popup Builder: by Sygnoos – 4.1.10
    Popup Builder AdBlock: by Sygnoos – 3.1
    Popup Builder Advanced Closing: by Sygnoos – 2.2
    Popup Builder Advanced Targeting: by Sygnoos – 3.1
    Popup Builder Contact Form: by Sygnoos – 3.3
    Popup Builder Exit Intent: by Sygnoos – 4.1
    Popup Builder Inactivity: by Sygnoos – 2.1
    Popup Builder Login: by Sygnoos – 3.1
    Popup Builder PDF: by Sygnoos – 2.3
    Popup Builder Registration: by Sygnoos – 2.1
    Popup Builder Yes/No buttons: by Sygnoos – 3.1
    Popup Builder Scroll: by Sygnoos – 3.3
    Popup Builder WooCommerce: by Sygnoos – 3.2
    Profitori: by Unity Business Technology Pty Ltd – 2.0.5.0
    Quiz Maker: by Quiz Maker team – 21.7.1
    Simple Sales Tax: by TaxCloud – 6.3.13
    Page Builder by SiteOrigin: by SiteOrigin – 2.16.13
    SiteOrigin Widgets Bundle: by SiteOrigin – 1.35.1
    Store Manager Connector: by eMagicOne – 1.0.12
    Survey Maker: by Survey Maker team – 20.0.7
    Templateberg - Gutenberg Templates, WordPress Themes Template Kits & WordPress Templates: by templateberg – 1.1.3
    Ultimate Addons for Gutenberg: by Brainstorm Force – 1.25.6
    WooCommerce Authorize.Net Gateway: by Pledged Plugins – 5.2.0
    USPS Simple Shipping for Woocommerce: by dangoodman – 1.6.2
    WooCommerce - Store Exporter: by Visser Labs – 2.7.1
    WOOF - WooCommerce Products Filter: by realmag777 – 2.2.6.2
    WooCommerce - ShipStation Integration: by WooCommerce – 4.1.48
    Store Toolkit for WooCommerce: by Visser Labs – 2.3.7
    WooCommerce: by Automattic – 6.5.1
    WordPress Importer: by wordpressdotorg – 0.7
    SEOPress: by SEOPress – 5.7.3
    WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels (Pro): by WebToffee – 4.3.5
    
    ### Inactive Plugins (17) ###
    
    Popup Builder Age Restriction: by Sygnoos – 2.2
    Popup Builder Analytics: by Sygnoos – 4.3
    Popup Builder AWeber: by Sygnoos – 3.1
    Popup Builder Countdown: by Sygnoos – 3.2
    Popup Builder Easy Digital Downloads: by Sygnoos – 2.1
    Popup Builder Gamification: by Sygnoos – 2.1
    Popup Builder Geo Targeting: by Sygnoos – 3.5
    Popup Builder Iframe: by Sygnoos – 2.2
    Popup Builder Mailchimp: by Sygnoos – 4.2
    Popup Builder Push Notification: by Sygnoos – 2.1
    Popup Builder Random: by Sygnoos – 2.2
    Popup Builder Recent Sales: by Sygnoos – 2.1
    Popup Builder Scheduling: by Sygnoos – 3.1
    Popup Builder Social: by Sygnoos – 2.1
    Popup Builder Subscription Plus: by Sygnoos – 4.4
    Popup Builder Video: by Sygnoos – 2.2
    WooCommerce Admin: by WooCommerce – 3.3.2
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: 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: ?
    Enforce Approved Product Download Directories: –
    
    ### WC Pages ###
    
    Shop base: #379 - /goldys-brand-inc-store/
    Cart: #1354 - /goldysbrand-com-cart-page/
    Checkout: #1358 - /goldysbrand-com-checkout-page/
    My account: #1362 - /my-account-page/
    Terms and conditions: #1565 - /goldys-brand-inc-terms-and-conditions/
    
    ### Theme ###
    
    Name: Agency Pro
    Version: 4.3.0
    Author URL: https://wpfreetheme.space
    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 ###
    
    Archive Template: Your theme has a woocommerce.php file
    you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues.
    
    Overrides: agency-pro/woocommerce/cart/mini-cart.php version 3.7.0 is out of date. The core version is 5.2.0
    agency-pro/woocommerce/content-product.php
    
    Outdated Templates: ?
    					
    					
    						Learn how to update
    
    ### Templates ###
    
    thumbnail: 
    medium: 
    medium_large: 
    large: 
    1536x1536: 
    2048x2048: 
    post-thumbnail: 
    woocommerce_thumbnail: 
    woocommerce_single: 
    woocommerce_gallery_thumbnail: 
    shop_catalog: 
    shop_single: 
    shop_thumbnail: 
    sow-carousel-default: 
    
    ### Action Scheduler ###
    
    Complete: 460
    Oldest: 2022-05-13 11:49:55 -0400
    Newest: 2022-06-10 19:46:21 -0400
    
    Pending: 1
    Oldest: 2022-06-10 20:03:23 -0400
    Newest: 2022-06-10 20:03:23 -0400
    
    ### Status report information ###
    
    Generated at: 2022-06-10 20:03:29 -04:00
    

    Hello @gguldens!

    Please try with the following CSS code and see if that works.

    .order-number {
            color: #df4d0f !important;
            font-weight: bold !important;
    }
    
    .order-date {
            color: #df4d0f !important;
            font-weight: bold !important;
    }
    
    .order-status {
            color: #df4d0f !important;
            font-weight: bold !important;
    }

    If that doesn’t then please take a screenshot of the Order details page from your mobile device and share that with us.

    Thread Starter gguldens

    (@gguldens)

    Adding the “!important” fixed the mobile display too.

    THANKS!

    That’s great to hear!

    Since the issue is resolved, I’m closing this thread.

    We’re happy to help, so please feel free to reach out to us again if you have any other questions.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Viewing an order number on my-account-page/view-order does not display correctly’ is closed to new replies.