Hello.
Products may also be missing from Admin if cache is outdated, or if the product is not assigned to the store view you are checking.
Those names are stored in the product description table. To check them in the database, use your own AbanteCart table prefix from system/config.php (DB_PREFIX) and run
but it is unsafe to delete only from product_descriptions, because products are linked across several tables.
Products may also be missing from Admin if cache is outdated, or if the product is not assigned to the store view you are checking.
Those names are stored in the product description table. To check them in the database, use your own AbanteCart table prefix from system/config.php (DB_PREFIX) and run
Code Select
SELECT name
FROM prefix_product_descriptions
WHERE name LIKE '%( Copy )%'; but it is unsafe to delete only from product_descriptions, because products are linked across several tables.

