Re: Attribute Required for Text flag not working
Following up on the original post with fix suggestions:
a) Have a separate "uninstall" utility.
b) If you want to use the code shown above to cleanup before your install SQL, just qualify it by doing the deletes "where configuration_id != 0", e.g.
Code:
SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Fual Slimbox';
DELETE FROM configuration WHERE configuration_group_id = @t4 AND configuration_group_id != 0;
DELETE FROM configuration_group WHERE configuration_group_id = @t4 AND configuration_group_id != 0;
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Bookmarks