News:

AbanteCart v1.4.4 is released.

Main Menu
support

Recent posts

#41
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.
#42
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;
#43
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.
#44
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?
#45
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?
#46
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.

#47
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?
#48
General Discussion / Re: AbanteCart v1.4.2 supplier...
Last post by harrychapman - July 29, 2026, 01:34:16 AM
The release note suggests this is built-in supplier management rather than only support for a third-party extension. Check the admin product or supplier settings first; if the option is missing, confirm the installed version, user permissions, and whether the latest database upgrade completed successfully.
#49
General Discussion / Re: Group Pricing Display when...
Last post by harrychapman - July 29, 2026, 01:29:28 AM
The category listing template likely uses the base product price instead of the logged-in customer group price. You may need to update the product-listing controller or template to call the same pricing logic used on the product page, then clear the application cache. Get complete information here on implementing group-based pricing consistently.
#50
General Support / Re: Digital Download
Last post by llegrand - July 28, 2026, 02:53:04 PM
You control what is used in the order status.  Note that the payment method has it's own settings and controls the status used by that setting.   If you have the SAME setting in your payment method when a transaction is successful as the condition in your you download delivery your customer will have access once payment is recorded.  You just need to use the same status to get the results you want.

You can set the global default behavior for new orders in the settings menu:


Location: Go to System → Settings → Checkout.

Order Status Setting: Here you will find a setting labeled "Order Status" (usually set to Pending by default). This defines the status assigned when an order is first processed.

Payment Method Overrides: Note that many Payment Methods have their own internal settings. They may automatically set the status to something else (like "Processing" or "Complete") for successfully Authorized and Captured orders, bypassing the global default.

Forum Rules Code of conduct
AbanteCart.com 2010 -