Use a dedicated table instead of wp_options
-
The plugin adds a new row in the
wp_options
table for every user.This is how it is doing it:
update_option('remove_shipping_zinrelo_'.get_current_user_id(), 'no');
This has caused our options table to bloat with more than 120,000 records for every user. I suggest you move these to a dedicated table.
- You must be logged in to reply to this topic.