Is there an easy way to change the name of an event action by site id in piwik? Or should everything be done manually in the database? Or pass one action name to another?
There is a way to delete everything by site ID
DELETE FROM piwik_log_visit WHERE idsite = X; DELETE FROM piwik_log_link_visit_action WHERE idsite = X; DELETE FROM piwik_log_conversion WHERE idsite = X; DELETE FROM piwik_log_conversion_item WHERE idsite = X;
user4242771
source share