Title: evalast's Replies | WordPress.org

---

# evalast

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 58 total)

1 [2](https://wordpress.org/support/users/evalast/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/evalast/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/evalast/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/evalast/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot access offset of type string on string in user-edit.php on line 552](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/#post-17917597)
 * thx again – im closing it. Just tested my code and it works fine atm.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot access offset of type string on string in user-edit.php on line 552](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/#post-17917563)
 * thx for your answer – i changed core files just temporarily. i have a custom 
   frontend handler to let user change their email. value of $_POST[’email’] is 
   just plain text. Using it this way works fine for all roles except the admin 
   user role. No errors in logs and no erros in backend. 
   To fix the issue i do 
   not allow the admin role to change the email anymore. I tried saving the values
   as arrays likeupdate_user_meta($user_id, ‘_new_email’, array(’email’ => $new_email));
   update_user_meta($user_id, ‘_email_confirm_key’, array(‘key’ => $confirmation_key));
   for customer role but got errors. this version (strings) works fine as mentioned
   before – Is this ok:
 *     ```wp-block-code
       ...$new_email = sanitize_email($_POST['email']);    $current_email = $current_user->user_email;    if ($new_email !== $current_email) {        // Generate a confirmation key        $confirmation_key = wp_generate_password(20, false);        update_user_meta($user_id, '_new_email', $new_email);        update_user_meta($user_id, '_email_confirm_key', $confirmation_key);...
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot access offset of type string on string in user-edit.php on line 552](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/cannot-access-offset-of-type-string-on-string-in-user-edit-php-on-line-552/#post-17917161)
 * Seems like this happens if there is a pending email change reqest for the admin
   email address? i clicked cancel, roled back changes of the user-edit.php file
   and now it works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ATUM WooCommerce Inventory Management and Stock Tracking] ATUM slows down order editing with custom endpoint](https://wordpress.org/support/topic/atum-slows-down-order-editing-with-custom-endpoint/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/atum-slows-down-order-editing-with-custom-endpoint/#post-17834155)
 * NO addon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ATUM WooCommerce Inventory Management and Stock Tracking] ATUM slows down order editing with custom endpoint](https://wordpress.org/support/topic/atum-slows-down-order-editing-with-custom-endpoint/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/atum-slows-down-order-editing-with-custom-endpoint/#post-17832328)
 * Hi, i did. It is the same – getting the id and updating the status works in the
   default WP way, Rest Api, Custom endpoint, in WP actions fine without ATUM activated,
   but with, it is slow. 
   Just try the following – it is the default way of doing
   it – exactley what im using.
 *     ```wp-block-code
              $order = wc_get_order($order_id);        // Update the order status        $order->set_status('cancelled', 'Order status updated by custom endpoint.');        $order->save(); // Save the changes to the database    I also tried the older Version to do it - the same. Just slow with ATUM activated:    $order = wc_get_order($order_id);    $order->update_status('cancelled', 'Order status updated by custom endpoint.');
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Performance ultra slow loading with PHP 8.2 but fast with 7.4](https://wordpress.org/support/topic/performence-ultra-slow-with-php-8-2-but-fast-with-7-4/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/performence-ultra-slow-with-php-8-2-but-fast-with-7-4/#post-17538421)
 * Looks like its a PHP 8.2 problem instead of a WP Problem. I just switched to 
   8.1 and it works fine – it uses ~150MB of memory. Memory of PHP 8.2 in my case
   brings my test server almost to hold because of high memory usage – at least 
   twice of 8.1. Looks like thats the problem. Some say its a memory leak…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Performance ultra slow loading with PHP 8.2 but fast with 7.4](https://wordpress.org/support/topic/performence-ultra-slow-with-php-8-2-but-fast-with-7-4/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/performence-ultra-slow-with-php-8-2-but-fast-with-7-4/#post-17536379)
 * I tested my site with / without Woocmmerce, with / without plugins, new installation,
   default wp themes, woo storefront theme and so on. Building websites on top of
   wp since 2006 now, and this is the first time i was not able to solve the slow
   response with any optimization like cdn and so on further till i read this topic
   
   [https://wordpress.org/support/topic/wordpress-very-slow-slow-server-response/#post-16628788](https://wordpress.org/support/topic/wordpress-very-slow-slow-server-response/#post-16628788)
   and just tried and find out…
    -  This reply was modified 2 years, 2 months ago by [evalast](https://wordpress.org/support/users/evalast/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Freesoul Deactivate Plugins - Disable plugins on individual WordPress pages] Cant deactivate – Any Category – KB Support Plugin](https://wordpress.org/support/topic/cant-deactivate-any-category-kb-support-plugin/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/cant-deactivate-any-category-kb-support-plugin/#post-17488345)
 * Looks like i had to do the “Save permalinks” magic trick to make it work on the
   main category archive page but it does not work on paged pages like
   …com/articles/
   category/restaurant/page/2/
    -  This reply was modified 2 years, 3 months ago by [evalast](https://wordpress.org/support/users/evalast/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Show only lowest prices in variable products for WooCommerce] HPOS Compatibility](https://wordpress.org/support/topic/hpos-compatibility-58/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/hpos-compatibility-58/#post-17130973)
 * Looks like there is another issue on my front. Thx a lot. best
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Show only lowest prices in variable products for WooCommerce] HPOS Compatibility](https://wordpress.org/support/topic/hpos-compatibility-58/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/hpos-compatibility-58/#post-17130856)
 * Hi – i did what you said, but still getting the warnig in the latest versoin.
   i just checked everything again and saw that my cronjobs did not work since a
   few months. I fixed it – so i guess it has something to do with my cronjob issue.
   Any idea how to fix this issue? Running older cronjobs are not possible because
   it says they failed. i guess the plugin did not update properly since a few versions…
   i dont know.., any idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Premmerce WooCommerce Customers Manager] Cant add custom code if the plugin is active](https://wordpress.org/support/topic/cant-add-custom-code-if-the-plugin-is-active/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/cant-add-custom-code-if-the-plugin-is-active/#post-17128923)
 * Hi – tried again and saw that my function only works when im on the Customers
   view not at the ALL view – regardless if your plugin is active or not. Im not
   sure which causes this issue but atm i fixed my problem a bit different without
   the code snippet. Thx for your help, best
    -  This reply was modified 2 years, 7 months ago by [evalast](https://wordpress.org/support/users/evalast/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Show only lowest prices in variable products for WooCommerce] HPOS Compatibility](https://wordpress.org/support/topic/hpos-compatibility-58/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/hpos-compatibility-58/#post-17124257)
 * Thx – can i ignore the warning or should i wait before switching to HPOS?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Freesoul Deactivate Plugins - Disable plugins on individual WordPress pages] New ticket to make it easier for you – found the issue from ticket before](https://wordpress.org/support/topic/new-ticket-to-make-it-easier-for-you-found-the-issue-from-ticket-before/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/new-ticket-to-make-it-easier-for-you-found-the-issue-from-ticket-before/#post-16635994)
 * Hi Jose, any plans to look into this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redis Object Cache] Redis sometimes stoppes working – READONLY You can’t write against a read](https://wordpress.org/support/topic/redis-sometimes-stoppes-working-readonly-you-cant-write-against-a-read/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/redis-sometimes-stoppes-working-readonly-you-cant-write-against-a-read/#post-16593524)
 * thx for your feedback – ill check it again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Freesoul Deactivate Plugins - Disable plugins on individual WordPress pages] 500 error in custom admin page with new server PHP 8.2.3](https://wordpress.org/support/topic/500-error-in-custom-admin-page-with-new-server-php-8-2-3/)
 *  Thread Starter [evalast](https://wordpress.org/support/users/evalast/)
 * (@evalast)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/500-error-in-custom-admin-page-with-new-server-php-8-2-3/#post-16591571)
 * I think i found the Problem. When i import the backup database it works fine,
   till i save the admin url settings in “…wp-admin/admin.php?page=eos_dp_admin_url”
   
   After that the new values in the options table under eos_dp_by_admin_urlchanges
   the format. I compared both values before and after saving. Here they are, maybe
   you can find out whats causing this issue. I compared both values with [diffnow.com](http://diffnow.com)
   and saw that they are different!For example – the working value ends with
 * “…wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php”;}}”
   and
   the value after saving with
 * “…wt-advanced-order-number.php”;s:1:”f”;s:1:”1″;}}”
   Backup database value
 *     ```wp-block-code
       a:7:{i:0;a:2:{s:3:"url";s:67:"*admin.php?page=op-warehouses&op-action=adjust_stock&warehouse_id=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:1;a:2:{s:3:"url";s:54:"*admin.php?page=op-warehouses&op-action=inventory&id=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:2;a:2:{s:3:"url";s:43:"*admin.php?page=op-transactions&warehouse=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:3;a:2:{s:3:"url";s:40:"*edit.php?post_type=atum_purchase_order*";s:7:"plugins";s:2760:",business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:4;a:2:{s:3:"url";s:43:"*admin.php?page=welcome-subenin-yoneticisi*";s:7:"plugins";s:2802:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:5;a:2:{s:3:"url";s:37:"*admin.php?page=stp_checklist_option*";s:7:"plugins";s:2943:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:6;a:2:{s:3:"url";s:32:"*comment.php?action=editcomment*";s:7:"plugins";s:2976:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}}
       ```
   
 * Value after saving the admin url settings in …wp-admin/admin.php?page=eos_dp_admin_url
 *     ```wp-block-code
       a:7:{i:0;a:3:{s:3:"url";s:67:"*admin.php?page=op-warehouses&op-action=adjust_stock&warehouse_id=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:1;a:3:{s:3:"url";s:54:"*admin.php?page=op-warehouses&op-action=inventory&id=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:2;a:3:{s:3:"url";s:43:"*admin.php?page=op-transactions&warehouse=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:3;a:3:{s:3:"url";s:40:"*edit.php?post_type=atum_purchase_order*";s:7:"plugins";s:2684:",business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:4;a:3:{s:3:"url";s:43:"*admin.php?page=welcome-subenin-yoneticisi*";s:7:"plugins";s:2726:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:5;a:3:{s:3:"url";s:37:"*admin.php?page=stp_checklist_option*";s:7:"plugins";s:2867:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:6;a:3:{s:3:"url";s:32:"*comment.php?action=editcomment*";s:7:"plugins";s:2900:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}}
       ```
   
    -  This reply was modified 3 years, 2 months ago by [evalast](https://wordpress.org/support/users/evalast/).

Viewing 15 replies - 1 through 15 (of 58 total)

1 [2](https://wordpress.org/support/users/evalast/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/evalast/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/evalast/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/evalast/replies/page/2/?output_format=md)