Quote Originally Posted by MB1 View Post
Code:
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES (NULL, 'Show Split Tax Lines', 'DISPLAY_SPLIT_TAX_LINES', 'true', 'Display each tax on a separate line during checkout and on invoices.', 1, 21, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), ');
how would i change this file to remove from database

thank you
Mike
Hi Mike,
If you are not using SplitTaxlines at all any more, it is safe to totally remove the entry. If you have phpmyadmin or something similar, you should be able to use the web interface to remove the entry in the database.

If you would rather remove the entry manually using standard SQL, something like:
Code:
DELETE FROM configuration
WHERE  configuration_key = 'DISPLAY_SPLIT_TAX_LINES'
LIMIT 1;
should do the trick.

Please backup your database completely before you make any changes to it!

Hope this helps,
Alan