News:

AbanteCart v1.4.4 is released.

Main Menu

Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

Recent posts

#21
Built-in Features / Re: Last updated time to produ...
Last post by Basara - July 30, 2026, 10:55:05 AM
Hello.
Yes, this is technically possible. AbanteCart already stores the product's last-modified date and time, and standard product imports update this value, so no database changes are needed. A code change or extension would be required to display it as column in the Products grid.
#22
General Support / Re: Is there a way to see a li...
Last post by timlight10 - July 30, 2026, 09:49:42 AM
Thank you, this worked perfectly and helped me get my catalog cleaned up!
#23
Built-in Features / Re: Last updated time to produ...
Last post by timlight10 - July 30, 2026, 09:34:14 AM
Yes, but my use case is that I need to see the time it was last updated. Products may be updated by import a few times per day, and I want to see the time of the last update. And I want to do that without having to open every single product in the list.
#24
Built-in Features / Re: Last updated time to produ...
Last post by Basara - July 30, 2026, 06:31:10 AM
Hello,
By default, the product list in the admin panel is sorted so that the most recently edited items appear at the top.
#25
General Support / Re: Is there a way to see a li...
Last post by Basara - July 30, 2026, 06:28:55 AM
Hello.
Please run this SQL script in phpMyAdmin or your preferred database tool. Be sure to replace the database prefix with your own before executing it.
SELECT
    p.product_id,
    p.model,
    p.status,
    pd.name
FROM `<DB_PREFIX>products` AS p
LEFT JOIN `<DB_PREFIX>product_descriptions` AS pd
    ON pd.product_id = p.product_id
    AND pd.language_id = 1
WHERE NOT EXISTS (
    SELECT 1
    FROM `<DB_PREFIX>products_to_categories` AS p2c
    WHERE p2c.product_id = p.product_id
)
ORDER BY p.product_id;
#26
General Support / Re: Critical error when notify...
Last post by Basara - July 30, 2026, 04:51:38 AM
Quote from: shift838 on July 29, 2026, 10:53:54 AMI am running version 1.4.0, the payment method is PayPal and shipping method is USPS.
Hello.
Please upgrade to version 1.4.4, as this issue was likely resolved some time ago. Make sure to create a backup before proceeding with the upgrade.
#27
General Support / Is there a way to see a list o...
Last post by timlight10 - July 29, 2026, 07:09:19 PM
Is there a way to see a list of products that have no categories assigned?
#28
Built-in Features / Last updated time to product l...
Last post by timlight10 - July 29, 2026, 06:11:30 PM
Can a column with the "last updated" timestamp for products be added to index.php?rt=catalog/product?
#29
General Support / Re: Critical error when notify...
Last post by shift838 - July 29, 2026, 10:53:54 AM
Quote from: Basara on July 29, 2026, 10:47:33 AMHello
What version of AbanteCart are you running? Also, what payment and shipping methods were used on the orders that trigger this error?

I am running version 1.4.0, the payment method is PayPal and shipping method is USPS.

#30
General Support / Re: Critical error when notify...
Last post by Basara - July 29, 2026, 10:47:33 AM
Hello
What version of AbanteCart are you running? Also, what payment and shipping methods were used on the orders that trigger this error?

Forum Rules Code of conduct
AbanteCart.com 2010 -