Title: tmokhtar's Replies | WordPress.org

---

# tmokhtar

  [  ](https://wordpress.org/support/users/tmokhtar/)

 *   [Profile](https://wordpress.org/support/users/tmokhtar/)
 *   [Topics Started](https://wordpress.org/support/users/tmokhtar/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tmokhtar/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tmokhtar/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tmokhtar/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tmokhtar/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tmokhtar/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] how to combine user details / billing address / shipping address in one form](https://wordpress.org/support/topic/how-to-combine-user-details-billing-address-shipping-address-in-one-form/)
 *  Thread Starter [tmokhtar](https://wordpress.org/support/users/tmokhtar/)
 * (@tmokhtar)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/how-to-combine-user-details-billing-address-shipping-address-in-one-form/#post-16794825)
 * [@anastas10s](https://wordpress.org/support/users/anastas10s/) 
   Thanks for your
   respone, i have build somthing that maybe you can help me with if its possible
   i have changed version of dashboard.php
 *     ```wp-block-code
       <?php
       /**
        * My Account Dashboard
        *
        * Shows the first intro screen on the account dashboard.
        *
        * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/dashboard.php.
        *
        * HOWEVER, on occasion WooCommerce will need to update template files and you
        * (the theme developer) will need to copy the new files to your theme to
        * maintain compatibility. We try to do this as little as possible, but it does
        * happen. When this occurs the version of the template file will be bumped and
        * the readme will list any important changes.
        *
        * @see     https://docs.woocommerce.com/document/template-structure/
        * @package WooCommerce\Templates
        * @version 4.4.0
        */
   
       if ( ! defined( 'ABSPATH' ) ) {
       	exit; // Exit if accessed directly.
       }
   
       $allowed_html = array(
       	'a' => array(
       		'href' => array(),
       	),
       );
       ?>
   
       <p>
       	<?php
       	printf(
       		/* translators: 1: user display name 2: logout url */
       		wp_kses( __( 'Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)', 'woocommerce' ), $allowed_html ),
       		'<strong>' . esc_html( $current_user->display_name ) . '</strong>',
       		esc_url( wc_logout_url() )
       	);
       	?>
   
       	<div class="woocommerce-MyAccount-content">
           <form method="post">
               <?php
               $user = wp_get_current_user();
   
               // Display user details form
               wc_get_template( 'myaccount/form-edit-account.php', array('user' => $user) );
   
   
               // Load user and address data
               $user_id = get_current_user_id();
               $user = new WC_Customer( $user_id );
   
               $load_address = 'billing';
               $address = $user->get_address( $load_address );
               wc_get_template( 'myaccount/form-edit-address.php', array(
                   'load_address'  => $load_address,
                   'user'          => $user,
                   'address'       => $address
               ) );
   
               $load_address = 'shipping';
               $address = $user->get_address( $load_address );
               wc_get_template( 'myaccount/form-edit-address.php', array(
                   'load_address'  => $load_address,
                   'user'          => $user,
                   'address'       => $address
               ) );
   
               ?>
   
   
               <button type="submit" class="woocommerce-Button button" name="save_account_details_with_address" value="<?php esc_attr_e( 'Save', 'woocommerce' ); ?>"><?php esc_html_e( 'Save changes', 'woocommerce' ); ?></button>
               <?php wp_nonce_field( 'save_account_details_with_address' ); ?>
               <input type="hidden" name="action" value="save_account_details_with_address" />
           </form>
       </div>
       </p>
   
   
   
       <?php
       	/**
       	 * My Account dashboard.
       	 *
       	 * @since 2.6.0
       	 */
       	do_action( 'woocommerce_account_dashboard' );
   
       	/**
       	 * Deprecated woocommerce_before_my_account action.
       	 *
       	 * @deprecated 2.6.0
       	 */
       	do_action( 'woocommerce_before_my_account' );
   
       	/**
       	 * Deprecated woocommerce_after_my_account action.
       	 *
       	 * @deprecated 2.6.0
       	 */
       	do_action( 'woocommerce_after_my_account' );
   
       /* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */
       ```
   
 * changed version of form-edit-address.php
 *     ```wp-block-code
       <?php
       /**
        * Edit address form
        *
        * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-edit-address.php.
        *
        * HOWEVER, on occasion WooCommerce will need to update template files and you
        * (the theme developer) will need to copy the new files to your theme to
        * maintain compatibility. We try to do this as little as possible, but it does
        * happen. When this occurs the version of the template file will be bumped and
        * the readme will list any important changes.
        *
        * @see https://docs.woocommerce.com/document/template-structure/
        * @package WooCommerce\Templates
        * @version 7.0.1
        */
   
       defined( 'ABSPATH' ) || exit;
   
       $page_title = ( 'billing' === $load_address ) ? esc_html__( 'Billing address', 'woocommerce' ) : esc_html__( 'Shipping address', 'woocommerce' );
   
       do_action( 'woocommerce_before_edit_account_address_form' ); 
   
       if ($load_address == 'billing') {
           $address_data = WC()->countries->get_address_fields( '', 'billing_' );
       } else if ($load_address == 'shipping') {
           $address_data = WC()->countries->get_address_fields( '', 'shipping_' );
       }
   
       // Fill the address fields with values
       foreach ( $address_data as $key => $field ) {
           $value = $user->get_meta( $key, true );
           $address_data[$key]['value'] = $value ? $value : '';
       }
       ?>
   
       <?php if ( ! empty( $address_data ) && ( is_array( $address_data ) || is_object( $address_data ) ) ) : ?>
   
           <form method="post">
   
               <h3><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title, $load_address ); ?></h3><?php // @codingStandardsIgnoreLine ?>
   
               <div class="woocommerce-address-fields">
                   <?php foreach ( $address_data as $key => $field ) : ?>
                       <?php woocommerce_form_field( $key, $field, wc_get_post_data_by_key( $key, $field['value'] ) ); ?>
                   <?php endforeach; ?>
               </div>
   
               <?php do_action( "woocommerce_after_edit_address_form_{$load_address}" ); ?>
   
               <p>
                   <button type="submit" class="button<?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="save_address" value="<?php esc_attr_e( 'Save address', 'woocommerce' ); ?>"><?php esc_html_e( 'Save address', 'woocommerce' ); ?></button>
                   <?php wp_nonce_field( 'woocommerce-edit_address', 'woocommerce-edit-address-nonce' ); ?>
                   <input type="hidden" name="action" value="edit_address" />
               </p>
           </form>
   
       <?php else : ?>
   
           <?php wc_get_template( 'myaccount/my-address.php' ); ?>
   
       <?php endif; ?>
   
       <?php do_action( 'woocommerce_after_edit_account_address_form' ); ?>
       ```
   
 * and added a function to function.php so it can save all three forms at ones
 *     ```wp-block-code
       function save_account_details_with_address() {
           if ( isset( $_POST['action'] ) && 'save_account_details_with_address' === $_POST['action'] && wp_verify_nonce( $_POST['_nonce'], 'save_account_details_with_address' ) ) {
               // Save account details
               wc_save_account_details();
   
               // Save addresses
               $customer = new WC_Customer( get_current_user_id() );
   
               if ( isset( $_POST['billing_first_name'] ) ) {
                   foreach ( $_POST as $key => $value ) {
                       if ( strpos( $key, 'billing_' ) === 0 ) {
                           $customer->{"set_$key"}( wc_clean( $value ) );
                       }
                   }
               }
   
               if ( isset( $_POST['shipping_first_name'] ) ) {
                   foreach ( $_POST as $key => $value ) {
                       if ( strpos( $key, 'shipping_' ) === 0 ) {
                           $customer->{"set_$key"}( wc_clean( $value ) );
                       }
                   }
               }
   
               $customer->save();
           }
       }
       add_action( 'template_redirect', 'save_account_details_with_address' );
       ```
   
 * the only problem is that im getting these waring that cusing the form not showing
   so i can test the saving function :
 * **Warning**: foreach() argument must be of type array|object, null given in **
   hello-elementor-child/woocommerce/myaccount/form-edit-address.php** on line **
   37**
    -  This reply was modified 2 years, 11 months ago by [tmokhtar](https://wordpress.org/support/users/tmokhtar/).
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [a way to schedule daily maintaince mode](https://wordpress.org/support/topic/a-way-to-schedule-daily-maintaince-mode/)
 *  Thread Starter [tmokhtar](https://wordpress.org/support/users/tmokhtar/)
 * (@tmokhtar)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/a-way-to-schedule-daily-maintaince-mode/#post-16565156)
 * XD, yes logged out and it doesn’t work:
   Even without the check of logged in user:
 *     ```wp-block-code
       function activate_maintenance_mode() {  $current_time = current_time( 'timestamp' );  $start_time = strtotime('10:45am');  $end_time = strtotime('10:50am');  if ( $current_time > $start_time && $current_time < $end_time ) {                          wp_die('<h1>Under Maintenance</h1>      <p>We are currently undergoing scheduled maintenance. Please check back in five minutes.</p>' );  } } add_action( 'init', 'activate_maintenance_mode' );
       ```
   
 * Do you have any idea about how to debug this?
   Thanks allready
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MoreConvert Wishlist for WooCommerce] Wishlist icon not going to wishlist page!](https://wordpress.org/support/topic/wishlist-icon-not-going-to-wishlist-page/)
 *  Thread Starter [tmokhtar](https://wordpress.org/support/users/tmokhtar/)
 * (@tmokhtar)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/wishlist-icon-not-going-to-wishlist-page/#post-16222172)
 * [@moreconvert](https://wordpress.org/support/users/moreconvert/),
 * Thanks for your fast reply. It does work with these settings it’s sound more 
   logical to me right now.
 * I thought the link will be added as “`<a link:"#"><span>icon</span></a>`” even
   without add link for “wishlist” counter title setting is enabled.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Products pictures are not showing on product page and singel product page](https://wordpress.org/support/topic/products-pictures-are-not-showing-on-product-page-and-singel-product-page/)
 *  Thread Starter [tmokhtar](https://wordpress.org/support/users/tmokhtar/)
 * (@tmokhtar)
 * [4 years ago](https://wordpress.org/support/topic/products-pictures-are-not-showing-on-product-page-and-singel-product-page/#post-15611671)
 * Hi [@margaretwporg](https://wordpress.org/support/users/margaretwporg/),
 * yes i have checked the issue form antoher computer and another browser i even
   have flushed all cache from client and server side.
 * i have the issue on multipel products here bij the urls:
    [https://www.new-bling.com/staging/product-category/jewels/rings/page/2/](https://www.new-bling.com/staging/product-category/jewels/rings/page/2/)
   [https://www.new-bling.com/staging/shop/silver-seal-ring-gold-plated-size-50-l9mm-x-w20mm/](https://www.new-bling.com/staging/shop/silver-seal-ring-gold-plated-size-50-l9mm-x-w20mm/)
   [https://www.new-bling.com/staging/shop/silver-seal-ring-silver-white-size-50-l12mm-x-w20mm/](https://www.new-bling.com/staging/shop/silver-seal-ring-silver-white-size-50-l12mm-x-w20mm/)
   [https://www.new-bling.com/staging/shop/silver-seal-ring-gold-plated-size-50-l13mm-x-w21-3mm/](https://www.new-bling.com/staging/shop/silver-seal-ring-gold-plated-size-50-l13mm-x-w21-3mm/)
   [https://www.new-bling.com/staging/shop/silver-seal-ring-silver-white-size-50-l13mm-x-w21-3mm/](https://www.new-bling.com/staging/shop/silver-seal-ring-silver-white-size-50-l13mm-x-w21-3mm/)
 * WooCoomerce status:
     ### WordPress Environment ###
 * WordPress address (URL): [https://www.new-bling.com/staging](https://www.new-bling.com/staging)
   
   Site address (URL): [https://www.new-bling.com/staging](https://www.new-bling.com/staging)
   WC Version: 6.4.1 REST API Version: ✔ 6.4.1 WC Blocks Version: ✔ 7.2.2 Action
   Scheduler Version: ✔ 3.4.0 WC Admin Version: ✔ 3.3.2 Log Directory Writable: 
   ✔ WP Version: 5.9.3 WP Multisite: – WP Memory Limit: 1 GB WP Debug Mode: – WP
   Cron: ✔ Language: en_US External object cache: ✔
 * ### Server Environment ###
 * Server Info: LiteSpeed
    PHP Version: 7.4.29 PHP Post Max Size: 8 MB PHP Time 
   Limit: 30 PHP Max Input Vars: 1000 cURL Version: 7.71.0 OpenSSL/1.1.1d
 * SUHOSIN Installed: –
    MySQL Version: 8.0.28-cll-lve Max Upload Size: 2 MB Default
   Timezone is UTC: ✔ fsockopen/cURL: ✔ SoapClient: ✔ DOMDocument: ✔ GZip: ✔ Multibyte
   String: ✔ Remote Post: ✔ Remote Get: ✔
 * ### Database ###
 * WC Database Version: 6.4.1
    WC Database Prefix: wpnb_ Total Database Size: 65.23MB
   Database Data Size: 45.13MB Database Index Size: 20.10MB wpnb_woocommerce_sessions:
   Data: 0.27MB + Index: 0.02MB + Engine InnoDB wpnb_woocommerce_api_keys: Data:
   0.02MB + Index: 0.03MB + Engine InnoDB wpnb_woocommerce_attribute_taxonomies:
   Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpnb_woocommerce_downloadable_product_permissions:
   Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpnb_woocommerce_order_items: Data:
   0.02MB + Index: 0.02MB + Engine InnoDB wpnb_woocommerce_order_itemmeta: Data:
   0.09MB + Index: 0.09MB + Engine InnoDB wpnb_woocommerce_tax_rates: Data: 0.02MB
   + Index: 0.06MB + Engine InnoDB wpnb_woocommerce_tax_rate_locations: Data: 0.02MB
   + Index: 0.03MB + Engine InnoDB wpnb_woocommerce_shipping_zones: Data: 0.02MB
   + Index: 0.00MB + Engine InnoDB wpnb_woocommerce_shipping_zone_locations: Data:
   0.02MB + Index: 0.03MB + Engine InnoDB wpnb_woocommerce_shipping_zone_methods:
   Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpnb_woocommerce_payment_tokens:
   Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpnb_woocommerce_payment_tokenmeta:
   Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpnb_woocommerce_log: Data: 0.02MB
   + Index: 0.02MB + Engine InnoDB wpnb_actionscheduler_actions: Data: 1.52MB + 
   Index: 0.64MB + Engine InnoDB wpnb_actionscheduler_claims: Data: 0.02MB + Index:
   0.02MB + Engine InnoDB wpnb_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB
   + Engine InnoDB wpnb_actionscheduler_logs: Data: 0.22MB + Index: 0.19MB + Engine
   InnoDB wpnb_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpnb_comments:
   Data: 0.05MB + Index: 0.09MB + Engine InnoDB wpnb_links: Data: 0.02MB + Index:
   0.02MB + Engine InnoDB wpnb_litespeed_avatar: Data: 0.02MB + Index: 0.03MB + 
   Engine InnoDB wpnb_litespeed_img_optm: Data: 2.52MB + Index: 1.91MB + Engine 
   InnoDB wpnb_litespeed_img_optming: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
   wpnb_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpnb_litespeed_url_file:
   Data: 0.02MB + Index: 0.08MB + Engine InnoDB wpnb_options: Data: 5.47MB + Index:
   0.33MB + Engine InnoDB wpnb_pmxe_exports: Data: 0.09MB + Index: 0.00MB + Engine
   InnoDB wpnb_pmxe_google_cats: Data: 0.39MB + Index: 0.00MB + Engine InnoDB wpnb_pmxe_posts:
   Data: 0.11MB + Index: 0.00MB + Engine InnoDB wpnb_pmxe_templates: Data: 0.02MB
   + Index: 0.00MB + Engine InnoDB wpnb_pmxi_files: Data: 0.02MB + Index: 0.00MB
   + Engine InnoDB wpnb_pmxi_hash: Data: 0.02MB + Index: 0.00MB + Engine InnoDB 
   wpnb_pmxi_history: Data: 7.52MB + Index: 0.00MB + Engine InnoDB wpnb_pmxi_images:
   Data: 0.05MB + Index: 0.00MB + Engine InnoDB wpnb_pmxi_imports: Data: 0.13MB 
   + Index: 0.00MB + Engine InnoDB wpnb_pmxi_posts: Data: 0.23MB + Index: 0.00MB
   + Engine InnoDB wpnb_pmxi_templates: Data: 0.17MB + Index: 0.00MB + Engine InnoDB
   wpnb_postmeta: Data: 13.52MB + Index: 9.03MB + Engine InnoDB wpnb_posts: Data:
   5.52MB + Index: 1.38MB + Engine InnoDB wpnb_revslider_css: Data: 0.14MB + Index:
   0.00MB + Engine InnoDB wpnb_revslider_layer_animations: Data: 0.02MB + Index:
   0.00MB + Engine InnoDB wpnb_revslider_navigations: Data: 0.02MB + Index: 0.00MB
   + Engine InnoDB wpnb_revslider_sliders: Data: 0.02MB + Index: 0.00MB + Engine
   InnoDB wpnb_revslider_slides: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpnb_revslider_static_slides:
   Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpnb_sbi_feed_caches: Data: 0.06MB
   + Index: 0.02MB + Engine InnoDB wpnb_sbi_feeds: Data: 0.02MB + Index: 0.02MB 
   + Engine InnoDB wpnb_sbi_instagram_feed_locator: Data: 0.02MB + Index: 0.03MB
   + Engine InnoDB wpnb_sbi_instagram_feeds_posts: Data: 0.06MB + Index: 0.03MB 
   + Engine InnoDB wpnb_sbi_instagram_posts: Data: 0.48MB + Index: 0.00MB + Engine
   InnoDB wpnb_sbi_sources: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpnb_simple_history:
   Data: 1.52MB + Index: 0.31MB + Engine InnoDB wpnb_simple_history_contexts: Data:
   2.52MB + Index: 3.03MB + Engine InnoDB wpnb_social_users: Data: 0.02MB + Index:
   0.03MB + Engine InnoDB wpnb_term_relationships: Data: 0.45MB + Index: 0.36MB 
   + Engine InnoDB wpnb_term_taxonomy: Data: 0.17MB + Index: 0.20MB + Engine InnoDB
   wpnb_termmeta: Data: 0.13MB + Index: 0.16MB + Engine InnoDB wpnb_terms: Data:
   0.16MB + Index: 0.17MB + Engine InnoDB wpnb_usermeta: Data: 0.09MB + Index: 0.09MB
   + Engine InnoDB wpnb_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wpnb_wc_admin_note_actions:
   Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpnb_wc_admin_notes: Data: 0.06MB
   + Index: 0.00MB + Engine InnoDB wpnb_wc_category_lookup: Data: 0.02MB + Index:
   0.00MB + Engine InnoDB wpnb_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB 
   + Engine InnoDB wpnb_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
   wpnb_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpnb_wc_order_product_lookup:
   Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpnb_wc_order_stats: Data: 0.02MB
   + Index: 0.05MB + Engine InnoDB wpnb_wc_order_tax_lookup: Data: 0.02MB + Index:
   0.03MB + Engine InnoDB wpnb_wc_product_attributes_lookup: Data: 0.02MB + Index:
   0.02MB + Engine InnoDB wpnb_wc_product_meta_lookup: Data: 0.28MB + Index: 0.64MB
   + Engine InnoDB wpnb_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
   wpnb_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpnb_wc_tax_rate_classes:
   Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpnb_wc_webhooks: Data: 0.02MB +
   Index: 0.02MB + Engine InnoDB wpnb_wcpdf_invoice_number: Data: 0.02MB + Index:
   0.00MB + Engine InnoDB wpnb_wcpdf_packing_slip_number: Data: 0.02MB + Index: 
   0.00MB + Engine InnoDB wpnb_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine 
   InnoDB wpnb_yith_wcwl_lists: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpnb_yoast_indexable:
   Data: 0.02MB + Index: 0.08MB + Engine InnoDB wpnb_yoast_indexable_hierarchy: 
   Data: 0.02MB + Index: 0.05MB + Engine InnoDB wpnb_yoast_migrations: Data: 0.02MB
   + Index: 0.02MB + Engine InnoDB wpnb_yoast_primary_term: Data: 0.02MB + Index:
   0.03MB + Engine InnoDB wpnb_yoast_prominent_words: Data: 0.02MB + Index: 0.03MB
   + Engine InnoDB wpnb_yoast_seo_links: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
   wpnb_yoast_seo_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
 * ### Post Type Counts ###
 * attachment: 1767
    blocks: 4 customize_changeset: 2 custom_css: 1 nav_menu_item:
   50 page: 105 popup: 2 popup_theme: 8 post: 1 postman_sent_mail: 250 product: 
   844 product_variation: 643 revision: 251 shop_coupon: 7 shop_order: 46 shop_order_refund:
   2 slide: 6 wafs: 1 wishlist: 2957 wpcf7_contact_form: 6
 * ### Security ###
 * Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
 * ### Active Plugins (33) ###
 * Akismet Anti-Spam: by Automattic – 4.2.3
    Contact Form 7: by Takayuki Miyoshi–
   5.5.6 Maspik – Spam blacklist: by yonifre – 0.5.8.1 Cookie Notice & Compliance
   for GDPR / CCPA: by Hu-manity.co – 2.2.3 Disable Comments on Media Attachments:
   by M Asif Rahman – 0.2.2 Enable Media Replace: by ShortPixel – 3.6.3 Facebook
   for WooCommerce: by Facebook – 2.6.13 Smash Balloon Instagram Feed: by Smash 
   Balloon – 6.0.5 LiteSpeed Cache: by LiteSpeed Technologies – 4.6 Nextend Social
   Login: by Nextendweb – 3.1.4 Popup Maker: by Popup Maker – 1.16.7 Postman SMTP:
   by Jason Hendriks – 1.7.2 Really Simple SSL: by Really Simple Plugins – 5.3.1
   Slider Revolution: by ThemePunch – 5.4.7.2 Simple History: by Pär Thernström –
   3.2.0 Product Feed PRO for WooCommerce: by AdTribes.io – 11.5.4 WooCommerce Search
   by Product SKU: by Clayton Kriesel [Three Remain Production] – 1.0 WooCommerce
   Advanced Free Shipping: by Jeroen Sormani – 1.1.4 WooCommerce Ogone Payment Gateway:
   by SkyVerge – 1.9.0 WooCommerce PDF Invoices & Packing Slips: by WP Overnight–
   2.14.4 WooCommerce WishLists: by Lucas Stark – 1.9.6 WooCommerce: by Automattic–
   6.4.1 WooSidebars: by WooCommerce – 1.4.6 WP All Export Pro: by Soflyy – 1.7.5
   WP All Import Pro: by Soflyy – 4.7.2 WP Google Analytics: by Aaron D. Campbell–
   1.4.1 WP All Export – ACF Export Add-On Pro: by Soflyy – 1.0.3 WP All Export –
   User Export Add-On Pro: by Soflyy – 1.0.7 WP All Export – WooCommerce Export 
   Add-On Pro: by Soflyy – 1.0.4 WP All Import – User Import Add-On Pro: by Soflyy–
   1.1.6 WP All Import – WooCommerce Import Add-On Pro: by Soflyy – 3.3.0 ReCaptcha
   v2 for Contact Form 7: by IQComputing – 1.3.9 YITH WooCommerce Wishlist: by YITH–
   3.8.0
 * ### Inactive Plugins (5) ###
 * Hello Dolly: by Matt Mullenweg – 1.7.2
    WP All Import – ACF Add-On: by Soflyy–
   3.3.5 WP All Import – Gravity Forms Add-On: by Soflyy – 1.0.0 WP All Import –
   Link Cloaking Add-on: by Soflyy – 1.1.5 WP All Import – Toolset Types Add-On 
   Pro: by Soflyy – 1.0.3
 * ### Dropin Plugins (2) ###
 * maintenance.php: maintenance.php
    object-cache.php: object-cache.php
 * ### Settings ###
 * API Enabled: ✔
    Force SSL: – Currency: EUR (€) 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: –
 * ### WC Pages ###
 * Shop base: #16552 – /shop/
    Cart: #23454 – /cart-2/ Checkout: #16586 – /checkout/
   My account: #16576 – /my-account/ Terms and conditions: #23291 – /terms-conditions/
 * ### Theme ###
 * Name: Flatsome
    Version: 3.5.1 Author URL: [http://www.uxthemes.com/](http://www.uxthemes.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: flatsome-3.5.1/flatsome/woocommerce/archive-product.php version 3.3.0
   is out of date. The core version is 3.4.0
    flatsome-3.5.1/flatsome/woocommerce/
   cart/cart-empty.php version 3.1.0 is out of date. The core version is 3.5.0 flatsome-
   3.5.1/flatsome/woocommerce/cart/cart.php version 3.3.0 is out of date. The core
   version is 3.8.0 flatsome-3.5.1/flatsome/woocommerce/checkout/form-checkout.php
   version 3.0.0 is out of date. The core version is 3.5.0 flatsome-3.5.1/flatsome/
   woocommerce/checkout/form-coupon.php version 3.3.0 is out of date. The core version
   is 3.4.4 flatsome-3.5.1/flatsome/woocommerce/checkout/thankyou.php version 3.2.0
   is out of date. The core version is 3.7.0 flatsome-3.5.1/flatsome/woocommerce/
   content-product.php version 3.0.0 is out of date. The core version is 3.6.0 flatsome-
   3.5.1/flatsome/woocommerce/content-single-product.php version 3.0.0 is out of
   date. The core version is 3.6.0 flatsome-3.5.1/flatsome/woocommerce/global/breadcrumb.
   php flatsome-3.5.1/flatsome/woocommerce/global/quantity-input.php version 3.3.0
   is out of date. The core version is 4.0.0 flatsome-3.5.1/flatsome/woocommerce/
   global/wrapper-end.php flatsome-3.5.1/flatsome/woocommerce/global/wrapper-start.
   php flatsome-3.5.1/flatsome/woocommerce/loop/loop-end.php flatsome-3.5.1/flatsome/
   woocommerce/loop/loop-start.php flatsome-3.5.1/flatsome/woocommerce/loop/pagination.
   php flatsome-3.5.1/flatsome/woocommerce/loop/result-count.php version 3.3.0 is
   out of date. The core version is 3.7.0 flatsome-3.5.1/flatsome/woocommerce/loop/
   sale-flash.php flatsome-3.5.1/flatsome/woocommerce/myaccount/form-login.php version
   3.3.0 is out of date. The core version is 4.1.0 flatsome-3.5.1/flatsome/woocommerce/
   myaccount/navigation.php flatsome-3.5.1/flatsome/woocommerce/notices/error.php
   version 3.3.0 is out of date. The core version is 3.9.0 flatsome-3.5.1/flatsome/
   woocommerce/notices/notice.php version 1.6.4 is out of date. The core version
   is 3.9.0 flatsome-3.5.1/flatsome/woocommerce/notices/success.php version 3.3.0
   is out of date. The core version is 3.9.0 flatsome-3.5.1/flatsome/woocommerce/
   product-searchform.php flatsome-3.5.1/flatsome/woocommerce/single-product/photoswipe.
   php flatsome-3.5.1/flatsome/woocommerce/single-product/price.php flatsome-3.5.1/
   flatsome/woocommerce/single-product/product-image.php version 3.1.0 is out of
   date. The core version is 3.5.1 flatsome-3.5.1/flatsome/woocommerce/single-product/
   product-thumbnails.php version 3.1.0 is out of date. The core version is 3.5.1
   flatsome-3.5.1/flatsome/woocommerce/single-product/related.php version 3.0.0 
   is out of date. The core version is 3.9.0 flatsome-3.5.1/flatsome/woocommerce/
   single-product/review.php flatsome-3.5.1/flatsome/woocommerce/single-product/
   sale-flash.php flatsome-3.5.1/flatsome/woocommerce/single-product/share.php version
   1.6.4 is out of date. The core version is 3.5.0 flatsome-3.5.1/flatsome/woocommerce/
   single-product/short-description.php flatsome-3.5.1/flatsome/woocommerce/single-
   product/tabs/tabs.php version 2.4.0 is out of date. The core version is 3.8.0
   flatsome-3.5.1/flatsome/woocommerce/single-product/title.php flatsome-3.5.1/flatsome/
   woocommerce/single-product/up-sells.php flatsome-3.5.1/flatsome/woocommerce/single-
   product-reviews.php version 3.2.0 is out of date. The core version is 4.3.0 flatsome-
   3.5.1/flatsome/woocommerce/single-product.php flatsome-3.5.1/flatsome/woocommerce/
   content-product_cat.php version 2.6.1 is out of date. The core version is 4.7.0
 * Outdated Templates: ❌
 *  Learn how to update
 * ### Action Scheduler ###
 * Complete: 894
    Oldest: 2022-05-03 07:18:00 +0000 Newest: 2022-05-03 10:34:00 
   +0000
 * Failed: 710
    Oldest: 2020-09-22 11:14:40 +0000 Newest: 2021-09-14 10:04:14 +0000
 * Pending: 1
    Oldest: 2022-05-04 01:50:49 +0000 Newest: 2022-05-04 01:50:49 +0000
 * ### Status report information ###
 * Generated at: 2022-05-03 11:06:04 +00:00
    `

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