AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: Tricops Corporation on July 21, 2015, 07:25:17 AM

Title: How to edit these help link from admin panel
Post by: Tricops Corporation on July 21, 2015, 07:25:17 AM
I want to remove or edit these help link from the admin panel how to remove or edit these link. Where to find the file also to edit.
Title: Re: How to edit these help link from admin panel
Post by: abolabo on July 22, 2015, 11:56:04 AM
run this SQL query in your phpMyAdmin

Code: [Select]
DELETE FROM your_db_prefix_dataset_values WHERE dataset_column_id IN (10,11,12,13,14,15,40) AND row_id IN (7,111,112,113,114);
but replace your_db_prefix_ by yours and do not forget do table backup (dump) before.

Also clean cache after run.
Title: Re: How to edit these help link from admin panel
Post by: Tricops Corporation on July 22, 2015, 01:51:29 PM
Thanks its really work.